1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

fixed small inconsistency

This commit is contained in:
Stig Palmquist
2018-09-24 23:42:56 +02:00
parent 01140bd131
commit 92dff0c07c

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