recursive - Factor Documentation (original) (raw)

recursive
Factor handbook » The language » Words » Compiler declarations

Prev: flushable

Vocabulary
syntax

Syntax

: foo ... ; recursive

Word description
Declares the most recently defined word as a recursive word.

Notes
This declaration is only required for inline words which call themselves. See Recursive combinator stack effects.

Definition

USING: words ;

IN: syntax

SYNTAX: recursive last-word make-recursive ;