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

[REBOL] Appending to a series of strings

From: seth:chromick:earthlink at: 18-Nov-2003 7:45

>> a: [1 2 3 4 5]
== [1 2 3 4 5]
>> b: [""]
== [""]
>> x: index? a
== 1
>> append b/:x "hi"
== "hi"
>> x: index? find a 4
== 4
>> append b/:x "hi"
** Script Error: append expected series argument of type: series port ** Near: append b/:x "hi" In theory, shouldn't append do it's thing on b/4 ... What's with the error? :\