Handbook
Glossary
parse-multiline-string ( end-text -- str )
Multiline
Prev:
/*
Vocabulary
multiline
Inputs
end-text
a string delineating the end
Outputs
str
the parsed string
Word description
Parses the input stream until the
end-text
is reached and returns the parsed text as a string.
Notes
Used to implement
/*
.
Definition
USING:
lexer
multiline.private
namespaces
;
IN:
multiline
:
parse-multiline-string
( end-text -- str )
lexer
get
1
(parse-multiline-string)
;