2008-03-07 21:05:58 -05:00
|
|
|
USING: help.markup help.syntax ;
|
|
|
|
IN: symbols
|
|
|
|
|
|
|
|
HELP: SYMBOLS:
|
|
|
|
{ $syntax "SYMBOLS: words... ;" }
|
|
|
|
{ $values { "words" "a sequence of new words to define" } }
|
|
|
|
{ $description "Creates a new word for every token until the ';'." }
|
2008-03-11 20:51:58 -04:00
|
|
|
{ $examples { $example "USING: prettyprint symbols ;" "SYMBOLS: foo bar baz ;\nfoo . bar . baz ." "foo\nbar\nbaz" } }
|
2008-03-07 21:05:58 -05:00
|
|
|
{ $see-also POSTPONE: SYMBOL: } ;
|