fork(1) download
  1. class Rope {
  2. static String result = "";
  3. static {result += "u";}
  4. {result += "c";}
  5. {result += "r";}
  6.  
  7. public static void main(String[] args) {
  8. System.out.print(Rope.result + " ");
  9. System.out.print(Rope.result + " ");
  10. new Rope();
  11. new Rope();
  12. System.out.print(Rope.result + " ");
  13. }
  14. }
  15.  
  16. //https://pt.stackoverflow.com/q/254100/101
Success #stdin #stdout 0.04s 4386816KB
stdin
Standard input is empty
stdout
u u ucrcr