Skip to content

Instantly share code, notes, and snippets.

@jeffAwesome
Last active September 27, 2015 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffAwesome/8bd5c43a4d89aa723172 to your computer and use it in GitHub Desktop.
Save jeffAwesome/8bd5c43a4d89aa723172 to your computer and use it in GitHub Desktop.
Hello World c#
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment