View Single Post
Old 03-20-2006, 09:42 PM   #2 (permalink)
teknomage1
Jack of all trades
 
teknomage1's Avatar
 
Join Date: Feb 2005
Location: Los Angeles
Posts: 598
teknomage1 is on a distinguished road
Send a message via AIM to teknomage1
you want (defparameter *car* '(Ford (Fieata Mondeo Focus)))
or (defparameter *car* (list 'Ford (list 'Fieata 'Mondeo 'Focus)))

Actually, reading your post it looks like you want the symbol FORD to have a value of (list 'Fieata 'Mondeo 'Focus), which would imply (setf FORD (list 'Fieata 'Mondeo 'Focus)) .
__________________
Stop intellectual property from infringing on me

Last edited by teknomage1; 03-20-2006 at 10:12 PM.
teknomage1 is offline   Reply With Quote