Last active
January 5, 2019 19:16
-
-
Save Aravin/c4dc6400e9d7ef2fad8c066eb4c010c1 to your computer and use it in GitHub Desktop.
C# - Hello World Program
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 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