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. Console.WriteLine("This won't execute");
  12.  
  13. Console.WriteLine("This will!");
  14. }
  15. }
Success #stdin #stdout 0.02s 33880KB
stdin
Standard input is empty
stdout
This will!