This Web
Other Webs
Schematics
Scheme Links
write-xml/content
xml
#lang scheme/base (require xml) (write-xml/content (xexpr->xml '(p "this is a "(b "test"))))
#lang scheme/base (require xml) (define op (open-output-string)) (write-xml/content (xexpr->xml '(p "this is a "(b "test"))) op) (printf "I see: ~s~n" (get-output-string op))