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