SBUF"
Factor handbook » The language » Syntax » Literals » String buffer syntax


Vocabulary
syntax

Syntax
SBUF" string... "


Inputs
None

Outputs
None

Word description
Reads from the input string until the next occurrence of ", converts the string to a string buffer, and appends it to the parse tree.

Examples
USING: io strings ; SBUF" Hello world" >string print
Hello world


Definition