Created
August 30, 2017 23:54
-
-
Save muizidn/cd86c0cdb818d52ad30ce24dbcb3fcf5 to your computer and use it in GitHub Desktop.
Simple Hello World in C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
class Program { | |
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