1 2 3 4
let add = fn x y = x + y in let mul = fn x y = x * y in let x = mul (add 5 42) 2 in add x 3.5