import "Prelude" ex1 = let in 1 ex2 = let {} in 2 ex3 = let {a=3} in a main = ex1 + ex2 + ex3 -- 6