fork download
  1. class Test
  2. {
  3. int x;
  4. public static void main(String[]args)
  5. {
  6. Test t=new Test();
  7. System.out.println(t.x);
  8. }
  9. }
  10.  
Success #stdin #stdout 0.08s 54348KB
stdin
Standard input is empty
stdout
0