$quotation ( element -- ) (original) (raw)
$quotation ( element -- )
Factor handbook » Developer tools » Help system » Writing documentation » Element types » Block elements
Prev: | $or ( element -- ) |
---|---|
Next: | $sequence ( element -- ) |
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 ;
: $quotation ( element -- )
check-first
{ "a " { $link quotation } " with stack effect " }
print-element $snippet ;