| A baby macro that is roughly to 'defop what 'wipe is to '=: (mac wipeop (name (o msg "nil"))
`(defop ,name ()
(pr ,msg)))
A lot of times when I'm experimenting with html I'll do a (defop test req
... )
to see how something works in the browser. Immediately afterward I'll start typing (wipe test)
(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 (wipeop test)
and get the desired effect. Nothing fancy but I wanted to share. :) |