factor/basis/tools/deploy/test/20/20.factor

11 lines
186 B
Factor

USING: io xml.syntax xml.writer ;
IN: tools.deploy.test.20
: test-xml ( str -- str' )
<XML <foo><-></foo> XML> xml>string ;
: main ( -- )
"Factor" test-xml print ;
MAIN: main