| I was reading some old Arc stuff, about implicit variable declaration using =, and how that turned out bad, and was wondering if it would be possible to do something like this:
(do
(l= x 5)
(cons x 'a)))
Basically a = that adds the variable to the local scope, the diference from the original arc = being that it is explicit, not implicit. |