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

Missing test definition in functions.lsp

thejnich opened this issue · comments

functions.lsp:84 should be
(define-test test-key-params ()
rather than
(defun test-key-params ()
Currently it's just a function not being used.

fixed. thanks!