fork download
  1. using System;
  2. public class Program
  3. {
  4. public static void Main()
  5. {
  6. // Prints a message to the console.
  7. System.Console.WriteLine("Hello World!");
  8.  
  9. // Waits for the user to press a key. This prevents the application
  10. // from immediate termination.
  11. System.Console.ReadLine();
  12. }
  13. }
Success #stdin #stdout 0.03s 28044KB
stdin
Standard input is empty
stdout
Hello World!