ableos_userland/programs/xml_tests/src/main.rs

8 lines
156 B
Rust
Raw Normal View History

2023-04-01 12:52:15 +00:00
use xml;
2023-03-31 04:25:47 +00:00
fn main() {
2023-04-01 12:52:15 +00:00
let root = xml::XMLElement::new("name");
2023-04-07 21:42:28 +00:00
// println!("{:?}", root.to_bin().unwrap());
2023-04-05 15:04:57 +00:00
println!("{}", root.to_string());
2023-03-31 04:25:47 +00:00
}