[REBOL] Re: Binding a changed function within a context
From: brett:codeconscious at: 5-Oct-2002 23:02
Not a general solution but given you are talking about edit-text, you could try something like: my-context: context [ local-var: 5 my-func: does [ print local-var ] ] my-context/my-func: does bind [ print ["new print" local-var] ] in my-context 'self Regards, Brett.