1 comment

[ 0.17 ms ] story [ 27.6 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).