fork download
  1. class NewClass {
  2. public static void main(String args[]) {
  3. int x=2;
  4. // x++;
  5. System.out.print("x=" + x++);
  6. }
  7. }
  8.  
Success #stdin #stdout 0.13s 55760KB
stdin
Standard input is empty
stdout
x=2