okamsn / loopy

A better looping and iteration macro for Emacs.
GNU General Public License v3.0
23 stars 3 forks source link

Check consistency of `numbers` #204

Open okamsn opened 3 weeks ago

okamsn commented 3 weeks ago

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?

okamsn commented 3 weeks ago

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))