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