Re: A89: seem to be a misunderstanding


[Prev][Next][Index][Thread]

Re: A89: seem to be a misunderstanding




In a message dated 9/27/98 22:06:30 Eastern Daylight Time, kimo@stones.com
writes:

> ok, with that i'll get the numbers 
>  1,5,9,13,17,21,25,29,33,37,41
>  i want to save EACH AND EVERY one of those numbers inside of a variable (a
>  different one for each number)(total of 11 different variables), not a
list.
>  something like 
>  testing1
>  testing2
>  testing3
>  so that i can go back and use them later.  
>  


how about this:


"var"->temp
for x,1,11
4x-3->#(temp&string(x))
endfor

that leaves you with var1-var11, each of which contains those particular
values (1-41, in degrees of 4)