[REBOL] problems with series of objects Re:

2000-08-13 Thread ingo
Hi Raimund, I'll step to your program, and maybe we'll find out together ... Once upon a time [EMAIL PROTECTED] spoketh thus: I try to have a series of self defined objects and pick one of the objects to access it. Here is the code I use: REBOL [] book: make object! [ author:

[REBOL] problems with series of objects Re:

2000-08-13 Thread larry
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