fork(2) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x = 1;
  8. int y = 2;
  9. int z;
  10.  
  11. z = x;
  12. x = y;
  13. y = z;
  14.  
  15. Console.WriteLine(x);
  16. Console.WriteLine(y);
  17. }
  18. }
Success #stdin #stdout 0.04s 23920KB
stdin
stdout
2
1