Skip to content

Instantly share code, notes, and snippets.

@snmsts
Created August 2, 2013 06:44
Show Gist options
  • Save snmsts/6137931 to your computer and use it in GitHub Desktop.
Save snmsts/6137931 to your computer and use it in GitHub Desktop.
(cl:defun :toggle (symbol)
(cl:if (cl:find symbol cl:*features*)
(cl:progn
(cl:setf cl:*features* (cl:remove symbol cl:*features*))
cl:nil)
(cl:progn
(cl:push symbol cl:*features*)
symbol)))
;;usage on repl.
;;(:toggle :debug)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment