Skip to content

Commit

Permalink
Fix missing "#" in a list of characters
Browse files Browse the repository at this point in the history
  • Loading branch information
spainisnotequal committed May 15, 2020
1 parent 2a62aff commit 763c31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion koans/loops.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

(define-test loop-collect
;; LOOP can collect the results in various ways.
(let* ((result-1 (loop for letter in '(#\a \b #\c #\d) collect letter))
(let* ((result-1 (loop for letter in '(#\a #\b #\c #\d) collect letter))
(result-2 (loop for number in '(1 2 3 4 5) sum number))
(result-3 (loop for list in '((foo) (bar) (baz)) append list)))
(assert-equal ____ result-1)
Expand Down

0 comments on commit 763c31e

Please sign in to comment.