Merge pull request #3227 from stigtsp/master

[CommonLisp/en] fixed inconsistency between code and output value
This commit is contained in:
Divay Prakash 2018-09-25 12:25:34 +05:30 committed by GitHub
commit b3ad4017a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -502,7 +502,7 @@ nil ; false; also, the empty list: ()
(fact 5) ; => 120
(loop :for x :across "abc" :collect x)
(loop :for x :across "abcd" :collect x)
; => (#\a #\b #\c #\d)
(dolist (i '(1 2 3 4))