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
redex-check
In the program
#lang racket (require redex/reduction-semantics) (define-language L (n ::= 1)) (redex-check L n n)
I get the error n: unbound identifier pointing at what should be the binding occurence of n in the redex-check.
n: unbound identifier
n
I would expect redex-check to behave more line define-term and give an error like:
define-term
n: illegal use of syntax value at phase 1: #<defined-term> in: n
pointing at the use of n
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the program
I get the error
n: unbound identifier
pointing at what should be the binding occurence ofn
in theredex-check
.I would expect
redex-check
to behave more linedefine-term
and give an error like:pointing at the use of
n
The text was updated successfully, but these errors were encountered: