- let a =
let x = 20 in
let y =
let x = 5 in
x + x
in
x + y
;;
- let b =
let x = "ab" in
let y = (let x = "cd" in x) ^ x in
x ^ y
;;
- let c =
let x = 22 in
x::y
;;
- let rec f x = if x > 0 then x :: (f (x-2)) else 0;;
- let g x = x * a;;
- let a = -1 ;;
- let f x =
let a = 20 in
a + (g x)
;;
- let z = (f 5) * a ;;