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