You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
letname:String="haha"print("My name is \(name)")
// My name is haha
변수와 상수
● var(변수) : 생성 후 데이터값 변경 가능
● let(상수) : 한번 값을 설정하면 변경 불가능
ex) [var or let] [이름]: [타입] = [값]
// 변수 code
varname:String="my"varage:Int=25varjob:String="student"
age =20
job ="백수"print("내 이름은 \(name), 나이는 \(age), 직업은 \(job)")
// 내 이름은 my, 나이는 20, 직업은 백수
// age와 job이 바뀐 것을 확인 할 수 있다.
//상수 code
letname:String="my"letage:Int=25letjob:String="student"
age =20 //오류 발생
job ="백수" //오류 발생
print("내 이름은 \(name), 나이는 \(age), 직업은 \(job)")
// 내 이름은 my, 나이는 25, 직업은 student
// age와 job이 바뀌지 않은 것을 확인 할 수 있다.