5.3. Let/In

The let/in construction is modelled on Ocaml: it has the lowest operator precedence.
  let pattern = expr1 in expr2
is equivalent to
  match expr1 with pattern => expr2 endmatch