fork download
  1. using System;
  2.  
  3. namespace SampleNamespace
  4. {
  5. public class SampleClass
  6. {
  7. public static void Main()
  8. {
  9. // Write hello world to the console
  10. System.Console.WriteLine("Hello World!");
  11. System.Console.WriteLine("Press any key to exit the application");
  12. System.Console.Read();
  13. } // End of Main function (program statup)
  14. } // End of SampleClass
  15. } // End of SampleNamespace
  16.  
Success #stdin #stdout 0.03s 36896KB
stdin
Standard input is empty
stdout
Hello World!
Press any key to exit the application