변수와 기본 타입
변수 선언·초기화, 정수·실수·문자·논리·문자열 literal, `var`·`dynamic`, numeric conversion과 overflow 경계를 정리합니다.
int count = 3;
string name = "Mina";
bool ready = true;
char grade = 'A';
long distance = 384_400_000L;
float gravity = 9.81f;
decimal price = 19.99m;
int hex = 0x2A;
int binary = 0b_0010_1010;
var labels = new List<string>(); // List<string>로 고정