Suppose that the following macro execution:
(make-model '((1 2)(3 4)(5 6)(7 8)))
, can generate the following list:
((MAKE-INSTANCE 'MODEL :NAME 7 :ID 8)
(MAKE-INSTANCE 'MODEL :NAME 5 :ID 6)
(MAKE-INSTANCE 'MODEL :NAME 3 :ID 4)
(MAKE-INSTANCE 'MODEL :NAME 1 :ID 2))
If I store the result in a parameter (e.g *test*), how could I get lisp to execute the four commands in the list?