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

[REBOL] Setting array variables

From: mike:yaunish:home at: 24-Aug-2000 22:32

I have been using "compose" to set variables within an array, I have the sneaky feeling that there may be easier way.
>>data: [ [ 1 2 3 ] [ 3 4 5 ] ]
== [[1 2 3] [3 4 5]]
>> b: 2
== 2
>> c: 3
== 3
>> new-data: 777
== 777
>> do compose [ (to-set-path reduce [ 'data :a :b ]) new-data ]
== [777 4 5]
>> data
== [[1 2 3] [777 4 5]] Anyone know of an easier way? Mike Yaunish [mike--yaunish--home--com]