<div>  (let ((str "a")</div><div>        (n 1))  </div><div>    (+ str (+ n 1)))</div><div><br></div><div>should produce "a2", but instead compiles to "str + n + 1" and produces "a11".</div>