$quotation ( element -- ) (original) (raw)

$quotation ( element -- )
Factor handbook » Developer tools » Help system » Writing documentation » Element types » Block elements

Prev: $or ( element -- )
Next: $sequence ( element -- )

Vocabulary
help.markup

Inputs

element an array with shape { effect }

Outputs
None

Word description
Produces the text "a quotation with stack effect effect".

Examples

{ $quotation ( obj -- ) } print-element

a quotation with stack effect ( obj -- )

Definition

USING: help.markup.private quotations ;

IN: help.markup

: $quotation ( element -- )
check-first
{ "a " { $link quotation } " with stack effect " }
print-element $snippet ;