Learning Racket: SXML

Start with the Beginning

I think Oleg Kiselyov made XML and XPath usable with Scheme.1 Examples from his site are a way to explore Racket's documentation and approach for sxml.2

(require sxml)
(define weather
  (ssax:xml->sxml (open-input-file "data/examples-weather.xml"))
(first weather)

Footnotes:

Author: brian

Validate