Skip to content
angerangel edited this page Mar 15, 2013 · 1 revision

USAGE

   CLOSURE spec body

DESCRIPTION

Defines a closure function.

CLOSURE is a function value.

ARGUMENTS

  • spec -- Help string (opt) followed by arg words (and opt type and string) (block!)
  • body -- The body block of the function (block!)

#SOURCE

closure: make function! [  [
    "Defines a closure function."
    spec [block!] {Help string (opt) followed by arg words (and opt type and string)}
    body [block!] "The body block of the function"
][
    make closure! copy/deep reduce [spec body]
] ]

Clone this wiki locally