Skip to content

Instantly share code, notes, and snippets.

@arionalmond
Created May 11, 2018 01:04
Show Gist options
  • Save arionalmond/312de139231b77f3e6c912e46657f80f to your computer and use it in GitHub Desktop.
Save arionalmond/312de139231b77f3e6c912e46657f80f to your computer and use it in GitHub Desktop.
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
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