[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Splicing macros are fun!
- To: (BUG LISP) at MIT-AI
- Subject: Re: Splicing macros are fun!
- From: ALAN@MIT-AI
- Date: Wed, 13 Sep 79 07:15:01 GMT
- Original-date: 09/13/79 03:15:01 EDT
(setsyntax #/~ 'splicing 'read)
T
(plist 'foobar) ;Why would I do that?
NIL
'(a b c ~foobar d e f)
(A B C . FOOBAR) ;Not quite what I expected
(plist 'foobar)
(D E F) ;AH HA!