We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Coalton
Although the faux-macro/minibuffer definition is (coalton &rest forms), coalton only takes one form/ doesn't have implicit progn.
(coalton &rest forms)
coalton
For instance:
COALTON-USER> (coalton (+ 1 2) (+ 3 4))
returns the error:
error: Malformed coalton expression --> <macroexpansion>:1:17 | 1 | (COALTON (+ 1 2) (+ 3 4)) | ^^^^^^^ unexpected form [Condition of type COALTON-IMPL/PARSER/BASE:PARSE-ERROR]
Either the faux-macro syntax should be changed to (coalton form) or coalton should be amended to handle multiple forms.
(coalton form)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Although the faux-macro/minibuffer definition is
(coalton &rest forms)
,coalton
only takes one form/ doesn't have implicit progn.For instance:
returns the error:
Either the faux-macro syntax should be changed to
(coalton form)
orcoalton
should be amended to handle multiple forms.The text was updated successfully, but these errors were encountered: