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

[REBOL] problems with series of objects Re:

From: larry:ecotope at: 13-Aug-2000 14:18

Hi Raimund You are close. The problem is the items in my-serie are words, not the values (objects, in this case) to which the words refer. Try this-book: get first my-serie print this-book/info The GET will dereference the word 'book1, returning the object itself. If you want the serie to contain the actual objects, you can do this my-serie: reduce [book1 book2] then your original access code works this-book: first my-serie print this-book/info HTH -Larry