Search found 1 match

by bzoto
Tue Dec 23, 2008 6:56 am
Forum: Common Lisp
Topic: accept both numbers and letters
Replies: 4
Views: 10880

Re: accept both numbers and letters

I'm not sure to understand - do you need something like the following?
(defmacro p+ (p1 p2)
`(list '+ ',p1 ',p2))

ciao