link to fry examples article from fry word docs
parent
2352792502
commit
379246d6e0
|
@ -2,17 +2,20 @@ USING: help.markup help.syntax quotations kernel ;
|
||||||
IN: fry
|
IN: fry
|
||||||
|
|
||||||
HELP: _
|
HELP: _
|
||||||
{ $description "Fry specifier. Inserts a literal value into the fried quotation." } ;
|
{ $description "Fry specifier. Inserts a literal value into the fried quotation." }
|
||||||
|
{ $examples "See " { $link "fry.examples" } "." } ;
|
||||||
|
|
||||||
HELP: @
|
HELP: @
|
||||||
{ $description "Fry specifier. Splices a quotation into the fried quotation." } ;
|
{ $description "Fry specifier. Splices a quotation into the fried quotation." }
|
||||||
|
{ $examples "See " { $link "fry.examples" } "." } ;
|
||||||
|
|
||||||
HELP: fry
|
HELP: fry
|
||||||
{ $values { "quot" quotation } { "quot'" quotation } }
|
{ $values { "quot" quotation } { "quot'" quotation } }
|
||||||
{ $description "Outputs a quotation that when called, fries " { $snippet "quot" } " by taking values from the stack and substituting them in." }
|
{ $description "Outputs a quotation that when called, fries " { $snippet "quot" } " by taking values from the stack and substituting them in." }
|
||||||
{ $notes "This word is used to implement " { $link POSTPONE: '[ } "; the following two lines are equivalent:"
|
{ $notes "This word is used to implement " { $link POSTPONE: '[ } "; the following two lines are equivalent:"
|
||||||
{ $code "[ X ] fry call" "'[ X ]" }
|
{ $code "[ X ] fry call" "'[ X ]" }
|
||||||
} ;
|
}
|
||||||
|
{ $examples "See " { $link "fry.examples" } "." } ;
|
||||||
|
|
||||||
HELP: '[
|
HELP: '[
|
||||||
{ $syntax "'[ code... ]" }
|
{ $syntax "'[ code... ]" }
|
||||||
|
|
Loading…
Reference in New Issue