본문 바로가기

iOS(Swift)/수업

상수와 변수(let 과 var)

let x = 20
print(x)
x = 20 //let으로 선언한 값을 변경하고 싶으면 var로 선언해야 한다.
print(x)
/*main.swift:12:1: error: cannot assign to value: 'x' is a 'let' constant
x = 20
^main.swift:10:1: note: change 'let' to 'var' to make it mutable
let x = 20
^~~
var*/

'iOS(Swift) > 수업' 카테고리의 다른 글

튜플의 자료형  (0) 2022.09.26
튜플(Tuple)  (0) 2022.09.26
type annotation 과 type inference  (0) 2022.09.26
문자 데이터 타입 : Character  (0) 2022.09.26
정수 데이터 타입 : Int  (0) 2022.09.26