What is the difference between let and var in Apple\'s Swift language?
let
var
In my understanding, it is a compiled language but it does not check
let is used to declare a constant value - you won't change it after giving it an initial value. var is used to declare a variable value - you could change its value as you wish.