Declarar constantes em Swift
let x = 5
x = 10 // Error
print(x)
SAMER SAEID
let x = 5
x = 10 // Error
print(x)