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
The following piece of code produces a define-language: unrecognized meta-variable in language r0-let error although works fine in chez.
define-language: unrecognized meta-variable in language r0-let
#lang nanopass (define program-info? list?) (define-language r0 (terminals (program-info (info)) (integer (n))) (Program (p) (program info e)) (Expr (e) n (- e) (+ e0 e1) (read))) (define variable? symbol?) (define-language r0-let (extends r0) (terminals (+ (variable (x)))) (Expr (e body) (+ x) (+ (let ((x e)) body))))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following piece of code produces a
define-language: unrecognized meta-variable in language r0-let
error although works fine in chez.The text was updated successfully, but these errors were encountered: