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