-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error defining macro-defining macro #56
Comments
Additionally, any further entries into the REPL error with |
Reads as [LET* [[w [gensym [QUOTE W]]]
[x [gensym [QUOTE X]]]
[y [gensym [QUOTE Y]]]
[zs [gensym [QUOTE Zs]]]]
[defun [QUOTE declare-reduce-binary] [V20]
[COND [[AND [CONSP [QUOTE V20]]
[AND [EQ [CAR [QUOTE V20]] [QUOTE declare]]
[AND [CONSP [CDR [QUOTE V20]]]
[AND [CONSP [CAR [CDR [QUOTE V20]]]]
[AND [EQ [CAR [CAR [CDR [QUOTE V20]]]] [QUOTE reduce-binary]]
[AND [CONSP [CDR [CAR [CDR [QUOTE V20]]]]]
[NULL [CDR [CDR [CAR [CDR [QUOTE V20]]]]]]]]]]]]
[LET [[macro-name [gensym [CAR [CDR [CAR [CDR [QUOTE V20]]]]]]]]
[LIST [LIST [QUOTE lambda] x [LIST [QUOTE lambda] y y]]
[LIST [QUOTE defmacro] macro-name
[CONS [QUOTE query] [CAR [CDR [QUOTE V20]]]]
[QUOTE ->]
macro-name
[CONS [CAR [CDR [CAR [CDR [QUOTE V20]]]]]
[CONS w [CONS x [CONS y zs]]]]
[QUOTE ->]
[LIST [CAR [CDR [CAR [CDR [QUOTE V20]]]]]
w
[CONS [CAR [CDR [CAR [CDR [QUOTE V20]]]]]
[CONS x [CONS y zs]]]]]
[CONS [QUOTE declare]
[CDR [CDR [QUOTE V20]]]]]]]
[T [QUOTE V20]]]]] |
Hi @TheGreatCatAdorer. The Btw, for let bindings you should use upper-case names, otherwise the code may not be portable. |
error:
The function SHEN::V154 is undefined.
version:
The text was updated successfully, but these errors were encountered: