Skip to content

Instantly share code, notes, and snippets.

View PaperclipBadger's full-sized avatar

Blaine Rogers PaperclipBadger

View GitHub Profile
use "collections"
trait XMLElement is Seq[XMLElement]
"""A element in an XML tree.
An element is a sequence containing its children. To get the `n`th child
of some `element: XMLElement`, use `element(n)`. To get all of its children,
use `element.values()`.
"""