6 lines
90 B
Hy
6 lines
90 B
Hy
|
(defmacro m []
|
||
|
(print "Hello from macro")
|
||
|
"boink")
|
||
|
|
||
|
(print "The macro returned:" (m))
|