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

[REBOL] Re: I just ain't gettin' it! :)

From: anton:lexicon at: 19-Dec-2002 11:18

Ed, try this:
>> x: [1 2 3 4 5]
== [1 2 3 4 5]
>> change at x 3 5
== [4 5]
>> x
== [1 2 5 4 5] Anton.