fork download
  1. // TIL this works!
  2.  
  3. using System;
  4.  
  5. class Test {
  6. public static void Main() {
  7. Console.WriteLine(TheNumber());
  8. }
  9.  
  10. static int TheNumber() => 42;
  11. }
Success #stdin #stdout 0.04s 23920KB
stdin
Standard input is empty
stdout
42