Comment made by: jaycfields
It does look like a duplicate. I find it surprising that this doesn't work, but it does work for doseq:
main=> (doseq [:let [x 1] y [2 3 4]] (println x y))
1 2
1 3
1 4
nil
I think you'll keep getting this bug report as long as that inconsistency exists.