newLISP Fan Club

Forum => Anything else we might add? => Topic started by: didi on May 21, 2007, 10:44:52 AM

Title: initializing lists
Post by: didi on May 21, 2007, 10:44:52 AM
Quote(  set 'cmin 1 )



( set 'b1 '( cmin cmin cmin )) ; generates ( cmin cmin cmin ) , hmm ...



( set 'b2  ( dup cmin 3 ))   ; generates ( 1 1 1 ) , thats what i need


Which is the best ( shortest,  most elegant, easiest ..)  way to initialize a list with some predefined values, what if cmax = 255  and  something like  ( cmin cmax cmin ) should result in ( 1 255 1 )  ?





PS:

Everytime i've finished my small  newLISP program ,  i see that there is a more 'lispy' way to do the things and i feel the strong wish to start from scratch  ;-)
Title:
Post by: Sleeper on May 21, 2007, 11:04:28 AM

(set 'b1 (list cmin cmin cmin))
Title:
Post by: didi on May 22, 2007, 09:22:22 AM
Thankyou :-)