fork download
  1. /*Program Name:HelloWorld,
  2.   Creator:Michael
  3.   Program Use:This program pretty much just writes out whatever you want. */
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. namespace HelloWorld
  9. {
  10. class HelloWorld
  11. {
  12. static void Main(string[] args)
  13. {
  14. Console.Out.Write("I am a C# Program");
  15. Console.In.ReadLine();
  16. //This command (//) is to write comments for other coders to read
  17. }
  18. }
  19. }
Success #stdin #stdout 0.03s 36944KB
stdin
Standard input is empty
stdout
I am a C# Program