11 lines
186 B
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
|