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

[REBOL] Re: Core 2.5.5 Beta Versions

From: lmecir:mbox:vol:cz at: 20-Feb-2003 14:53

Hi, in the Core 2.5.5 it looks, like series have a volatile position attribute, which may change, when we append a value:
>> a: "1"
== "1"
>> b: tail a
== ""
>> index? b
== 2
>> append a #"1"
== "11"
>> index? b
== 2 very unfortunate Regards -L