Rebol Programming/does
USAGE:
editDOES body
DESCRIPTION:
editA shortcut to define a function that has no arguments or locals.
DOES is a function value.
ARGUMENTS
edit- body -- The body block of the function (Type: block)
(SPECIAL ATTRIBUTES)
edit- catch
SOURCE CODE
editdoes: func [ {A shortcut to define a function that has no arguments or locals.} [catch] body [block!] "The body block of the function" ][ throw-on-error [make function! [] body] ]