- Dec 15, 2003
- 540
- 0
- 0
npe we haven't learned about environmental model.
and i didn't need to use it. but the eval statement you showed in ur code was the key for what i did
basically i just did
(defmacro ZERO (&rest L)
(do ...
(eval `(setf ,(car L) 0))
)
)
i had initially done that whole thing but without the eval part, as our prof. has never mentioned it (at laest not that i can recall), so it would never have crossed my midn to use it in my macro, but thankfully i ran into yah, and picked it up from you.
and i didn't need to use it. but the eval statement you showed in ur code was the key for what i did
basically i just did
(defmacro ZERO (&rest L)
(do ...
(eval `(setf ,(car L) 0))
)
)
i had initially done that whole thing but without the eval part, as our prof. has never mentioned it (at laest not that i can recall), so it would never have crossed my midn to use it in my macro, but thankfully i ran into yah, and picked it up from you.