fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace HelloWorld
  7. {
  8. class HelloWorld
  9. {
  10. static void Main(string[] args)
  11. {
  12. Console.Out.WriteLine("Hello World");
  13. Console.In.ReadLine();
  14. }
  15. }
  16. }
  17.  
Success #stdin #stdout 0.03s 36944KB
stdin
Standard input is empty
stdout
Hello World