some newLISP builtin function is destructive, If user want design destructive function, how to make it?
for every argument passed into user function is value, not reference only if value is stored in a functor.
I suggest, use a macro, or else pass in a symbol, you can alter the value that a symbol points to.
thanks, I think macro may be ok!