forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Does
angerangel edited this page Mar 15, 2013
·
1 revision
DOES body
A shortcut to define a function that has no arguments or locals.
DOES is a function value.
- body -- The body block of the function (block!)
#SOURCE
does: make function! [ [
{A shortcut to define a function that has no arguments or locals.}
body [block!] "The body block of the function"
][
make function! copy/deep reduce [ [] body]
] ]