[REBOL] how to create a working while loop? Re:

1999-10-11 Thread Al . Bri
This should help: help while While a condition block is TRUE, evaluates another block. Arguments: cond-block -- (block) body-block -- (block) Counter: 0 while [Counter 10] [print Counter Counter: Counter + 1] 0 1 2 3 4 5 6 7 8 9 == false Andrew Martin [EMAIL PROTECTED]

[REBOL] how to create a working while loop? Re:(2)

1999-10-11 Thread Al . Bri
Perhaps a working example of a Hello program might be instructive: print ["Hello" ask "Hi! What's your name? "] Hi! What's your name? Andrew Hello Andrew Andrew Martin [EMAIL PROTECTED] http://members.xoom.com/AndrewMartin/ Online @ 33,600 Baud! --