Skip to content

Instantly share code, notes, and snippets.

@jimmykurian
Created May 4, 2012 20:27
Show Gist options
  • Save jimmykurian/2597520 to your computer and use it in GitHub Desktop.
Save jimmykurian/2597520 to your computer and use it in GitHub Desktop.
A simple Hello Wolrd program written in C#.
// HelloWorld.cs - Jimmy Kurian
using System;
public class HelloWorld
{
public static void Main()
{
Console.WriteLine("Hello, World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment