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

[REBOL] Re: 'use question

From: lmecir:mbox:vol:cz at: 30-Oct-2002 15:10

Hi Maarten, ----- Original Message ----- From: "Maarten Koopmans"
> A better sample is this: > > f: use [ b c ][ b: 10 c: 2 * b does [ c + 1]] > > Now, how do I access b directly in this case, where it has no occurence > in the function body and thus is really hidden.
If you insist to have 'b, you can: use-b: bind 'b first second :f Regards -L