We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Toplevel closures "work" in Medley Interlisp in that you can write
(let ((x 10)) #'(lambda () (incf x)))
and get back an interpreted closure, or if you have a non-managed file (not using fileCOMS or other means of saving state), you can compile file it.
But lexical closures don't have a way of saving state using the file manager commands defined.
(let ((x 10)) (defun foo () (incf x)))
shouldn't error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Toplevel closures "work" in Medley Interlisp in that you can write
and get back an interpreted closure, or if you have a non-managed file (not using fileCOMS or other means of saving state), you can compile file it.
But lexical closures don't have a way of saving state using the file manager commands defined.
shouldn't error.
The text was updated successfully, but these errors were encountered: