Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Index? Re:

From: rryost:home at: 25-Aug-2000 13:31

Paul, I don't see the result as an error. You're just printing out the "index" of each item in 'a; Look at this console session, with remarks inserted following the :'s:
>> a: "101"
== "101"
>> foreach item a [print item]
1 ; the index of this '1 is 1. 0 ; the index of this '0 is 2, etc. 1