Had a hard day coding in CL and looking for basic knowledge on this language.
Let's assume I'll define a structure:
Let's assume I'll define a structure:
(defstruct my-Str
(slot-1 0 :type fixnum)
(slot-2 0.0d0 :type double-float))
It's a new type. How can I make an array of elements of that type? I've tried (make-array (list 5) :element-type 'my-Str), but all I got was an array of type T.