|  | A baby macro that is roughly to 'defop what 'wipe is to '=: A lot of times when I'm experimenting with html I'll do a  (mac wipeop (name (o msg "nil"))
    `(defop ,name ()
      (pr ,msg)))
 to see how something works in the browser. Immediately afterward I'll start typing  (defop test req
    ... )
 (because I'm a bit OCD about globals) when I remember that 'test isn't a place. This is just so I'm able to do  (wipe test)
 and get the desired effect. Nothing fancy but I wanted to share. :)  (wipeop test)
 |