시작은 근본인 Hello World! 출력하기

using System;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

 

WrtieLine은 새 줄 삽입, Write는 새 줄 삽입 x

가독성을 위해 주로 WriteLine사용

+ Recent posts