tests3.l 180 B

123456
  1. (def x (fn a (do (let b 2) (+ a b))))
  2. (def y (fn a (do (let b 2) (let c 3) (+ a (+ b c)))))
  3. (def y (fn a (do (let b "foo-") (let c "-bar") (concat b (concat a (concat b c))))))