Arc Forumnew | comments | leaders | submit | uu's commentslogin
3 points by uu 1854 days ago | link | parent | on: Variables & scoping complaint

Thank you, that's 100% on point!

Setting local variables should be simpler (or equivalent to) setting global variables. It's so much easier to do (= v 10) than (let ((v 10) ...)) despite "let" / "with" arguably being preferable to "=" in most cases.

-----