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
This works by default:
(let ((x 10) (expr '(* x x))) (eval expr)) ;; ==> 100
Eval should be executed in interaction-environment by default.
interaction-environment
It will be a breaking change, but it will conform to the standard. From now on, you will need to use this:
(let ((x 10) (expr '(* x x))) (eval expr (current-environment)))
If you want the same behavior.
The text was updated successfully, but these errors were encountered:
change eval to use interaction-environment by default #324
eval
9bc72c9
fix unit tests #324
e182c95
No branches or pull requests
This works by default:
Eval should be executed in
interaction-environment
by default.It will be a breaking change, but it will conform to the standard. From now on, you will need to use this:
If you want the same behavior.
The text was updated successfully, but these errors were encountered: