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 13:29

Another road to hell:
>> a: "0123456789"
== "0123456789"
>> b: tail a
== ""
>> remove back tail a
== ""
>> pick b -5
== #"4"
>> append a #"9"
== "0123456789"
>> pick b -5
== #"5" Cheers -L