You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 20, 2013
·
1 revision
USAGE
USE vars body
DESCRIPTION
Defines words local to a block.
USE is a function value.
ARGUMENTS
vars -- Local word(s) to the block (block! word!)
body -- Block to evaluate (block!)
#SOURCE
use: make function! [ [
"Defines words local to a block."
vars [block! word!] "Local word(s) to the block"
body [block!] "Block to evaluate"
][
apply make closure! reduce [to block! vars copy/deep body] []
] ]