google / lisp-koans

Common Lisp Koans is a language learning exercise in the same vein as the ruby koans, python koans and others. It is a port of the prior koans with some modifications to highlight lisp-specific features. Structured as ordered groups of broken unit tests, the project guides the learner progressively through many Common Lisp language features.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Minor typo, in vectors.lsp

tkych opened this issue · comments

In koans/vectors.lsp, line#19, '?' is missing.

(true-or-false ___ (typep #(1 11 111) 'vector))
->
(true-or-false? ___ (typep #(1 11 111) 'vector))

good catch. thanks.

On Fri, May 31, 2013 at 9:32 PM, Takaya Ochiai notifications@github.comwrote:

In koans/vectors.lsp, line#19, '?' is missing.

(true-or-false ___ (typep #(1 11 111) 'vector))
->
(true-or-false? ___ (typep #(1 11 111) 'vector))


Reply to this email directly or view it on GitHubhttps://github.com//issues/2
.