Skip to content

Instantly share code, notes, and snippets.

@QB
Created March 29, 2013 03:24
Show Gist options
  • Save QB/5268568 to your computer and use it in GitHub Desktop.
Save QB/5268568 to your computer and use it in GitHub Desktop.
.NET を使って C# で HelloWorld
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Hello {
class Program {
static void Main(string[] args) {
System.Console.WriteLine("HelloWorld!!");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment