Rebol Programming/has
USAGE:
editHAS locals body
DESCRIPTION:
editA shortcut to define a function that has local variables but no arguments.
HAS is a function value.
ARGUMENTS
edit- locals -- (Type: block)
- body -- (Type: block)
SOURCE CODE
edithas: func [ {A shortcut to define a function that has local variables but no arguments.} locals [block!] body [block!] ][function [] locals body]