C#
C# 기본 Hello World! 출력하기
Tran
2006. 4. 12. 13:01
콘솔에 Hello World! 출력하기
using System;
using System.Collections.Generic;
using System.Text;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
System.Console.WriteLine("Hello World!");
}
}
}