1 comment

[ 2.5 ms ] story [ 15.7 ms ] thread
“The decision made by Swift's designers to use the word let instead of const or even static is strange.”

   let greeting = “hello”
Is much nicer than

   constant greeting = “hello”
Haskell and OCaml use let for assignment (immutable).