[REBOL] while statement problem Re:(2)
From: capolunghi:att at: 3-Oct-2000 10:56
Petr: Thanks. Your solution led me to conclude that you can't do this: prime : true while [ prime and ... ] [ .. ] Seems rebol does not interpret 'prime as true in this case. The workaround is to state: while [ (prime = true) and (...) ] [ .. ] You have to explicitly state the conditions in the while clause. Strange .. Joe