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

[REBOL] Re: Change/part

From: robbo1mark:aol at: 23-Feb-2001 15:18

I'll repeat again..........8-) POKE is the function you want to change a value at a series index position see below;
>> string: "0000000000"
== "0000000000"
>> poke string 4 #"2"
== "0002000000"
>>
make sense? Mark Dickson