fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x = 42;
  8. int y = new int();
  9. y = 43;
  10.  
  11. Console.WriteLine(x);
  12. Console.WriteLine(y);
  13. }
  14. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
42
43