:allow-other-keys breaks order

Issue #68 resolved
Takashi Kato repo owner created an issue

This should print (:a :b :c :d)

(define (foo :key bar :allow-other-keys rest)
   (print rest))
(foo :a :b :c :d)

It is better to keep the argument order for convenience.

Comments (1)

  1. Log in to comment