arc> (let ((x 2)) (+ x 3)) Error: "Can't understand fn arg list 2"
But: arc> (let x 1 (+ x (* x 2))) results in 3
So:
arc> (let x 2 (+ x 3)) results in 5