Handbook
Glossary
<doctype> ( open values close -- doctype )
Vocabulary
modern
.
html
Inputs
open
an
object
values
an
object
close
an
object
Outputs
doctype
an
object
Definition
USING:
accessors
kernel
strings
;
IN:
modern.html
:
<doctype>
( open values close -- doctype )
doctype
new
swap
>string
>>close
swap
>>values
swap
>string
>>open
;