diff --git a/src/koans/09_runtime_polymorphism.clj b/src/koans/09_runtime_polymorphism.clj index 806c8df..8a231a9 100644 --- a/src/koans/09_runtime_polymorphism.clj +++ b/src/koans/09_runtime_polymorphism.clj @@ -6,7 +6,7 @@ ([a] (str "Hello, you silly " a ".")) ([a & more] (str "Hello to this group: " (apply str - (interpose ", " (concat (list a) more))) + (interpose ", " (cons a more))) "!"))) (defmulti diet (fn [x] (:eater x)))