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
Reported on Zulip: https://zulip.lurk-lab.com/#narrow/stream/17-lurk/topic/Cannot.20access.20env.20after.20eval/near/113458
This works:
(let ( (env (let ((f (lambda (x) x))) (current-env))) (apply1 (lambda (fn arg) (fn arg))) (apply (lambda (expr) (apply1 (eval (car expr) env) (cdr expr))))) (apply '(f 1)))
But this doesn't
(let ( (env (let ((f (lambda (x) x))) (current-env))) (apply (lambda (expr) ((eval (car expr) env) (cdr expr))))) (apply '(f 1)))
But apparently both should work
The text was updated successfully, but these errors were encountered:
This reproduces in LEM so it's effectively a bug in the CEK machine itself
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Reported on Zulip: https://zulip.lurk-lab.com/#narrow/stream/17-lurk/topic/Cannot.20access.20env.20after.20eval/near/113458
This works:
But this doesn't
But apparently both should work
The text was updated successfully, but these errors were encountered: