see ( defspec -- )
Factor documentation > Factor handbook > Developer tools > Printing definitions
Next:see-methods ( word -- )


Vocabulary
see

Inputs and outputs
defspeca definition specifier


Generic word contract
Prettyprints a definition.

Examples
A word:
\ append see

A method:
USE: arrays M\ array length see

A help article:
USE: help.topics "help" >link see


Definition
USING: io ;

IN: see

: see ( defspec -- ) see* nl ;