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

[REBOL] Creation of object with unknown structure

From: knizhnik::garret::ru at: 6-Dec-2003 14:15

Hello, 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. I read Rebol manual but some questions are still not clear for me. Can some Rebol guru suggest me the best way of dynamic instantiation of object (so that structure of the object is not known at compile time)? For example I have block containing field names and values: ["x" 1 "y" 2 "z" 3] I want to construct object with these fields, so that result will be the same as after creating object using "make": obj: make object! [x: 1 y: 2 z: 3] So the question is actually how can I construct block which contains variable assignments. -- Thanks in advance, Konstantin mailto:[knizhnik--garret--ru]