프로그래밍


[C#] 프로그래밍 입문

시온스 0 2,804 2018.01.05 21:14

프로그래밍을 입문할때마다 단골처럼 등장하는게 있다.

 

바로 Hello World다.


class Program

{

    static void Main(string[] args)

    {

        Console.WriteLine("Hello World");

    }

}

 


단순히 저렇게 타이핑한 뒤, 

 

c# 컴파일러로 컴파일하면 exe파일이 생성되고,

Comments