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

[REBOL] Re: Invalid Path Value

From: roy:wetherall:documentum at: 30-Nov-2000 13:03

You could try something like this ...
>> block: [a b c d e f g h i j]
== [a b c d e f g h i j]
>> index: 2
== 2
>> block/2
== b
>> value: to-path compose [block (index)]
== block/2
>> print value
b Roy