[CM] list* == unbound variable
Heinrich Taube
taube at uiuc.edu
Tue Oct 27 11:20:07 PDT 2009
On Oct 27, 2009, at 5:21 AM, Rune Boutroue Bekkhus wrote:
>> print list*(1,2,3, {a b c})
>> produces
>>>>> Error: list*: unbound variable
>
forgot theis one: use 'concat' its will do pretty much anything
cm> (concat 1 2 3 4 5)
(1 2 3 4 5)
cm> (concat 1 '(2 3) 4 5)
(1 2 3 4 5)
cm> (concat '(1 2 3) '(4 5))
(1 2 3 4 5)
cm> (concat 1 2 3 '(a b c))
(1 2 3 a b c)
so in sal you example would be:
print concat(1,2,3, {a b c})
More information about the Cmdist
mailing list