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

nil or t depends on implementation

mzgcz opened this issue · comments

(subtypep '(vector double-float 100) '(array number *))
In SBCL, nil
In Clisp, t

double-float is subtype of number, but we can't say double-float list is subtype of number list.