using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {

            //정수형 변수 hp를 정의
            int hp;


            //문자열 형식 변수 name 정의하고 값 "hong' 할당
            string name = "hong";


            //Hello World를 3번 출력(for문 사용)
            for (int i = 0; i <= 2; i++)
            {
                Console.WriteLine("Hello World");
            }


            //아래 구문에서 에러를 제거
            App app = new App();


           



        }
    }
}

+ Recent posts