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
numbers
The following in SBCL 2.1.11 produces 3.
(loop for i in '(1 2 3) for j from 1 finally (return j))
The following in Emacs 29 produces 4.
(cl-loop for i in '(1 2 3) for j from 1 finally (cl-return j))
What does Loopy produce, with and without with binding? Are the two results the same? Which answer should we expect?
with
The text was updated successfully, but these errors were encountered:
Confirmed that Loopy currently returns a different value depending on whether it is with bound.
;; => 3 (loopy (with (j 0)) (numbers j :from 0 :to 3) (finally-return j)) ;; => 4 (loopy (numbers j :from 0 :to 3) (finally-return j))
Sorry, something went wrong.
No branches or pull requests
The following in SBCL 2.1.11 produces 3.
(loop for i in '(1 2 3)
for j from 1
finally (return j))
The following in Emacs 29 produces 4.
(cl-loop for i in '(1 2 3)
for j from 1
finally (cl-return j))
What does Loopy produce, with and without
with
binding? Are the two results the same? Which answer should we expect?The text was updated successfully, but these errors were encountered: