Created
June 18, 2021 19:42
-
-
Save sirherrbatka/6b9aedb9f08eed2c2a0f867d3f10cf0c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro decorate (name &body body) | |
(let ((symbol-name (symbol-name name))) | |
`(progn | |
(format t "~&----- header ~a -----~%" ,symbol-name) | |
,@body | |
(format t "~&----- footer ~a -----~%" ,symbol-name)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment