[REBOL] Re: Creation of object with unknown structure

2003-12-09 Thread Vos, Doug
Konstantin - have you tried this? >> obj: make object! [x: 1 y: 2 z: 3] >> x: mold obj == { make object! [ x: 1 y: 2 z: 3 ]} >> obj: do x >> probe obj make object! [ x: 1 y: 2 z: 3 ] >> And other ways of examining objects: >> first obj == [self x y z] >> third obj == [

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Gregg Irwin
Hi Konstantin, KK> I am developer of object oriented database for dynamic languages KK> (www.garret.ru/~knizhnik/dybase.html) KK> Currently it supports PHP, Python and Ruby. Now I am going to develop KK> Rebol API for DyBASE. That's great! I think someone mentioned DyBase here not too long ago.

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Konstantin Knizhnik
Hello Christian, Thank you very much! "to-set-word" - is what I have missed. And "prepare" function is exactly what I need. Saturday, December 6, 2003, 6:37:09 PM, you wrote: >> I am developer of object oriented database for dynamic languages >> (www.garret.ru/~knizhnik/dybase.html) >> Curre

[REBOL] Re: Creation of object with unknown structure

2003-12-06 Thread Christian Langreiter
> I am developer of object oriented database for dynamic languages > (www.garret.ru/~knizhnik/dybase.html) > Currently it supports PHP, Python and Ruby. Now I am going to develop > Rebol API for DyBASE. that's very, very cool! > I read Rebol manual but some questions are still not clear for me.