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
check-satisfied
I am not sure if it is just me or for everyone. When trying to step this program:
#lang htdp/isl+ (define (my-add x) (lambda (y) (+ x y))) (check-satisfied (my-add 5) procedure?)
The stepper expands check-satisfied and steps through its implementation. Moreover, adding this test:
(check-satisfied (my-add 5) (lambda (g) (and (procedure? g) (= (g 3) 8))))
raises the error
lookup-binding: variable not found in environment: p?
The text was updated successfully, but these errors were encountered:
(This is the case since at least v8.8.)
Sorry, something went wrong.
jbclements
No branches or pull requests
I am not sure if it is just me or for everyone. When trying to step this program:
The stepper expands
check-satisfied
and steps through its implementation. Moreover, adding this test:raises the error
The text was updated successfully, but these errors were encountered: