fork download
  1. using System;
  2. namespace HelloWorldApplication
  3. {
  4. class HelloWorld
  5. {
  6. static void Main(string[] args)
  7. {
  8. /* My first C# program */
  9. Console.WriteLine("Hello World!");
  10. Console.ReadKey();
  11. }
  12. }
  13. }
Success #stdin #stdout 0.03s 23772KB
stdin
Standard input is empty
stdout
Hello World!