9 lines
435 B
Factor
9 lines
435 B
Factor
|
USING: help.markup help.syntax multiline ;
|
||
|
|
||
|
HELP: STRING:
|
||
|
{ $syntax "STRING: name\nfoo\n;" }
|
||
|
{ $description "Forms a multiline string literal, or 'here document' stored in the word called name. A semicolon is used to signify the end, and that semicolon must be on a line by itself, not preceeded or followed by any whitespace. The string will have newlines in between lines and at the end." } ;
|
||
|
|
||
|
IN: multiline
|
||
|
ABOUT: POSTPONE: STRING:
|