[REBOL] Re: Function Context Query
From: ptretter:charter at: 3-Dec-2001 15:07
Seems pretty clear:>> source hashas: func [ {A shortcut to define a function that has local variables but no arguments.} locals [block!] body [block!] ][function [] locals body]>> source a1a1: func [/local b c][print b print c]>>Paul Tretter