forked from AbleOS/ableos_userland
8 lines
156 B
Rust
8 lines
156 B
Rust
use xml;
|
|
|
|
fn main() {
|
|
let root = xml::XMLElement::new("name");
|
|
// println!("{:?}", root.to_bin().unwrap());
|
|
println!("{}", root.to_string());
|
|
}
|