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

[REBOL] Re: Highfun

From: greggirwin:mindspring at: 19-Nov-2001 11:34

Hi Ladislav, << a new version of http://www.sweb.cz/LMecir/highfun.r is available. It contains a new LOCALS? function and a generalized version of the APPLY function. (To Gregg: could you test it, please?) >> Just took a quick run at LOCALS? and wanted to confirm the results. It is expected to return all parameters, refinements, and local words as words because of how you're using it in APPLY, correct?
>> locals? func [a b /local c d] []
== [a b local c d]
>> locals? func [a b /r /local c d] []
== [a b r local c d] --Gregg