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

[REBOL] Re: Binding

From: rotenca:telvia:it at: 18-Nov-2002 18:53

Hi Robert,
> Within predicate and action I would like to have access to id and > object. And from action I would like to have access to the local > variables from the caller's context. I tried the following:
foreach [id object] list [ if do bind predicate 'id [do bind action 'id] ] or foreach [id object] list compose/deep [ if do (predicate) [do (action)] ] --- Ciao Romano