fork download
  1. using System;
  2.  
  3. namespace HelloWorld
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Console.WriteLine("Hello World!");
  10. }
  11. }
  12. }
Success #stdin #stdout 0.04s 26404KB
stdin
Standard input is empty
stdout
Hello World!