rmsym.zy 203 B

123456
  1. // rmsym removes a symbol from the local scope
  2. (assert (== `12` (newScope (def b 5) (newScope (def b 12) (str b) ))))
  3. (assert (== `5` (newScope (def b 5) (newScope (def b 12) (rmsym %b) (str b) ))))