Open FelipeRosa opened 8 years ago
It's not currently possible to write something like this (because and is a macro):
(and [e1 e2] (funcall and e1 e2))
It must be written like this:
(and [e1 e2] (funcall (macroexpand 'and) e1 e2))
It's not currently possible to write something like this (because and is a macro):
It must be written like this: