From: Carl Taylor
Subject: Re: specifying arrays
Date: 
Message-ID: <9ISDf.316149$qk4.228908@bgtnsc05-news.ops.worldnet.att.net>
"Stefan Ram" <···@zedat.fu-berlin.de> wrote in message 
··························@ram.dialup.fu-berlin.de...
>  The expression
>
> #( a b c )
>
>  denotes an array with three symbols. Is there any means of
>  Common Lisp to write this as:
>
> ( array a b c )

CL-USER 1 > (vector 'a 'b 'c)
#(A B C)

clt