$low-level-note ( children -- ) (original) (raw)

$low-level-note ( children -- )
Factor handbook » Developer tools » Help system » Writing documentation » Element types » Block elements

Prev: $sequence ( element -- )
Next: $io-error ( children -- )

Vocabulary
help.markup

Inputs

children a list of markup elements

Outputs
None

Word description
Prints a disclaimer, indicating that the current page describes a low level word.

Definition

USING: kernel ;

IN: help.markup

: $low-level-note ( children -- )
drop
"Calling this word directly is not necessary in most cases. Hi..."
$notes ;