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

[REBOL] howto_convert?

From: riachtchenko:docutec at: 29-Nov-2000 11:14

Hi, since i read it' would be all easy in rebol, i tried obscure:
>> account: make object! [
[ name: none]
>> a_1: :account >> a_2: :account >> a_2/name: "sascha"
== "sascha"
>> a_1/name: "mascha"
== "mascha"
>> foreach obj [acc_1 acc_2][
[ probe obj/name] ** Script Error: Cannot use path on word! value. ** Where: probe obj/name
>>
I did't found how it can be converted in a right way. Thanks, Sascha