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

[REBOL] Refinements Re:

From: bhandley:zip:au at: 30-Aug-2000 0:36

Like this perhaps? count: ["one" "two" "three" "four"] data-struct: [ this: 1 words: [ "some-word" [ title "some-title" ] ] "one" [......] "two" [ "i picked block two" ] "three" [.......] ] selector: second count res: first data-struct/:selector ; Note the get-word notation .... == "i picked block two" note that you could do this as well:
>> res: first select data-struct second count
== "i picked block two" Brett.