fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int x = 2;
  8. int y = 3;
  9.  
  10. if (x + y < 0)
  11. {
  12. Console.WriteLine("Neither of these are");
  13. Console.WriteLine("Going to execute");
  14. }
  15.  
  16. Console.WriteLine("See the difference?");
  17. }
  18. }
Success #stdin #stdout 0.02s 33824KB
stdin
Standard input is empty
stdout
See the difference?