closure (Object control)

Calls the topmost callable list. Use

@closure
to get a reference to it.

Arguments

None

Return values

None

Example

fac: { CALL: [ dup 0 = [ drop 1 ] [ dup 1 - closure * ] if ]; }; 6 fac print
Output:
720