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

[REBOL] Re: Object problem

From: fsievert:uos at: 18-May-2001 11:47

On Fri, 18 May 2001, Richard Smolak wrote:
> o: make o [b: 10] > append o/x 'b > == [a b] > do o/x > ** Script Error: b has no value > ** Where: do-events > ** Near: b > >> > huh, where is problem?
You appended a b which is bound to the global context, not to the objects's context. Try append o/x in o 'b Frank