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