You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: (loop for n from 1 to 3 and x = n collect (list n x))
return ((1 1) (2 2) (3 3)), but the use of and may mean
that N is NIL the first time around, so this is the wrong answer if so.
The text was updated successfully, but these errors were encountered:
There is one test in the ANSI suite for using the and iteration clause grouping (reference loop.17.21), which happens to be commented out in Code/Loop/Test/loop17.lisp.
As an aside, test loop.17.20 is also commented out, but sicl-loop passes this test.
Example: (loop for n from 1 to 3 and x = n collect (list n x))
return ((1 1) (2 2) (3 3)), but the use of and may mean
that N is NIL the first time around, so this is the wrong answer if so.
The text was updated successfully, but these errors were encountered: