use xml;
fn main() {
let root = xml::XMLElement::new("name");
// println!("{:?}", root.to_bin().unwrap());
println!("{}", root.to_string());
}