[REBOL] Re: Executable code blocks as arguments
From: tim:johnsons-web at: 22-Aug-2001 11:36
On Wed, Aug 22, 2001 at 10:27:14AM -0700, Ryan Cole wrote:> The context of the block arg must be bound to the current context. > > >> ob: make object! [ > [ a: 1 > [ f: func [v] [bind v 'a do v] > [ ] > >> ob/a > == 1 > >> ob/f [a: 5] > == 5 > >> ob/a > == 5 > >>Yes!! That's it.....> have fun, --RyanOh boy! Will I ever! Thanks :>) tj