Handbook
Glossary
form. ( vector -- )
Vocabulary
html
.
parser
.
analyzer
Inputs
vector
an
object
Outputs
None
Definition
USING:
accessors
combinators
io
kernel
sequences
;
IN:
html.parser.analyzer
:
form.
( vector -- )
[
closing?>>
]
reject
[
{
{
[
dup
name>>
"form"
=
]
[
"form action: "
write
"action"
attribute
print
]
}
{
[
dup
name>>
"input"
=
]
[
input.
]
}
[
drop
]
}
cond
]
each
;