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

[REBOL] Re: object funnies

From: gchiu:compkarori at: 19-Oct-2001 13:57

Still trying to puzzle this one out .... test: make object! [ test1: 1 fun: does [ test2: 2 test3: 3 test1: test2 + test3 ] ] Reading the core docs, I sort of expected that the instance variables test1, test2 and test3 are encapsulated within the object test. But it seems that test2 and test3 are available in the global context, but test1 is not. -- Graham Chiu