1. 변수 (Variable)


2. 상수 (Constant)


3. 코드 예시


var variable: Int = 10
variable = 20

let constants: Int = 10
// constnats = 20 불가능

4. 상수를 사용하는 이유