fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Go()
  8. /*
  9. while the name does not suggest it,
  10. the above initializes the necessary devices:
  11. listener, translator, etc.
  12. this call cannot be moved down
  13. */ ;
  14. }
  15.  
  16. private static void Go(){
  17. Console.WriteLine("Go");
  18. }
  19. }
Success #stdin #stdout 0.03s 24120KB
stdin
Standard input is empty
stdout
Go