[REBOL] simple beginners Q: need to assign variable value to variable Re:

2000-05-31 Thread ryanc
Probably everyone with programming experience will have the same problem your having when trying to learn REBOL. In REBOL there is no need for this activity, thats why its so hard to make it do that. REBOL's series type is what you need to focus on to solve this problem. It is an amazing thing.

[REBOL] simple beginners Q: need to assign variable value to variable Re:

2000-05-31 Thread icimjs
Hi Bryce, I'm not sure I understand your question. The way I interpret what you are saying, the following mechanisms may prove useful. Evaluating the following for loop (Note here I am using to set-word!) for i 1 10 1 [ print mold to set-word! join 'var [i] ] results in var1: var2: var3: