Skip to content

Instantly share code, notes, and snippets.

@makochang
Created January 8, 2015 06:13
Show Gist options
  • Save makochang/175ed92fe47402da2cbc to your computer and use it in GitHub Desktop.
Save makochang/175ed92fe47402da2cbc to your computer and use it in GitHub Desktop.
C# による Hello World プログラム
public class HelloWorld
{
public static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment