fork(4) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. private static bool Flag = false;
  6.  
  7. static void Main(string[] args)
  8. {
  9. var foo = 34;
  10. var bar = 42;
  11.  
  12. Console.WriteLine($"{(foo > bar ? "Foo is larger than bar!" : "Bar is larger than foo!")}");
  13.  
  14. }
  15. }
Success #stdin #stdout 0.03s 23936KB
stdin
Standard input is empty
stdout
Bar is larger than foo!