Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created November 19, 2018 16:19
Show Gist options
  • Save jmercouris/c8f5738ac6ac9ea3c4132edba73527f6 to your computer and use it in GitHub Desktop.
Save jmercouris/c8f5738ac6ac9ea3c4132edba73527f6 to your computer and use it in GitHub Desktop.
(defmacro define-mode (name direct-superclasses direct-slots &body body)
`(progn
(defclass ,name ,direct-superclasses ,direct-slots)
(progn ,@body)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment