From: ts Date: 2005-10-22T23:17:22+09:00 Subject: Re: A comparison by example of keyword argument styles >>>>> "D" == Daniel Schierbeck writes: D> def foo(a:) D> puts a D> end Well, matz has given the reason vgs% cmucl -quiet * (defun foo (&key a) (list a)) FOO * (foo :a 12) (12) * (quit) vgs% OK ? Guy Decoux