[REBOL] Undocumented: Index value local to FOR loop
From: gchillemi::aliceposta::it at: 23-Mar-2004 15:50
I have found this undocumentend behaviour:
Try this script:
rebol [
Author: "Giuseppe Chillemi"
Tittle: "A little attemp"
]
esterno: does [
print [indice]
]
for indice 1 10 1 [
esterno
]
Halt
Rebol tell me that "indice" is not initalized but it is ! This word seems to
remain local to the for loop.
I suppose the mailing list already know this. I write it for just
confirmation from the community.
Giuseppe Chillemi