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

[REBOL] Re: Function Context Query

From: ptretter:charter at: 3-Dec-2001 15:07

Seems pretty clear:
>> source has
has: func [ {A shortcut to define a function that has local variables but no arguments.} locals [block!] body [block!] ][function [] locals body]
>> source a1
a1: func [/local b c][print b print c]
>>
Paul Tretter