[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Splicing macros are fun!



(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!