Handbook
Glossary
comment
XML data types
ยป
XML data classes
Prev:
prolog
Next:
instruction
Vocabulary
xml
.
data
Class description
Represents a comment in XML. This tuple has one slot,
text
, which contains the comment
string
.
See also
<comment>
Definition
USING:
strings
;
IN:
xml.data
TUPLE:
comment
{
text
string
initial:
""
}
;
Methods
USING:
accessors
io
xml.data
xml.writer
;
M:
comment
write-xml
"<!--"
write
text>>
write
"-->"
write
;