Created
November 20, 2016 13:05
-
-
Save evanxg852000/b5bed87990c4a2c09763233d7b48fce1 to your computer and use it in GitHub Desktop.
C Sharp hello world
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; | |
namespace App { | |
class Program { | |
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