Search found 1 match

by natilus
Sun Oct 31, 2010 11:45 am
Forum: Common Lisp
Topic: macro-function
Replies: 3
Views: 4112

macro-function

Hi, I begin to study the macro-function in Lisp but there is something I 'don't understand in my push macro. (setq place '(a b c)) (defmacro mypush (element place) (setq place '(cons 'element place)) ) (macroexpand-1 '(mypush a liste)) (cons 'element place) ; t It always returns me "element&quo...