When looking at F#, Ocaml and other functional language code examples I notice that the let keyword is used very often.
In Haskell,
foo = let x = 5 y = 7 in z=x+y
is used to make clear that x and y are "private" variables to foo.