Skip to content

Instantly share code, notes, and snippets.

@Aravin
Last active January 5, 2019 19:16
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 Aravin/c4dc6400e9d7ef2fad8c066eb4c010c1 to your computer and use it in GitHub Desktop.
Save Aravin/c4dc6400e9d7ef2fad8c066eb4c010c1 to your computer and use it in GitHub Desktop.
C# - Hello World Program
using System;
class MainClass
{
public static void Main (string[] args)
{
Console.WriteLine ("Hello, World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment