Hello,
I have a quick question.
Consider this:
((lambda (&key k) k) :k 1 :k 2)
=> 1 ; on my system
Is the outcome of this form well defined by the standard?
Thanks,
Frank
Search found 3 matches
- Sat Jul 14, 2012 8:50 am
- Forum: Common Lisp
- Topic: Identical Keyword Parameter
- Replies: 1
- Views: 5204
- Wed Jul 04, 2012 6:17 pm
- Forum: Common Lisp
- Topic: trivial-features
- Replies: 1
- Views: 3902
trivial-features
hello,
what feature keywords does trivial-features support?
thanks,
frank
what feature keywords does trivial-features support?
thanks,
frank
- Thu Jun 21, 2012 4:15 pm
- Forum: Common Lisp
- Topic: Passing values by reference
- Replies: 12
- Views: 41988
Re: Passing values by reference
Well I think this is wrong nevertheless as a literal list is modified here...Code: Select all
(setf foo '(a b c)) (setf bar '(d e f)) (setf foo (nconc foo bar)) ; <= correct