ableos_userland/programs/xml_tests/src/main.rs

8 lines
107 B
Rust
Raw Normal View History

2023-04-01 07:52:15 -05:00
use xml;
2023-03-30 23:25:47 -05:00
fn main() {
2023-04-01 07:52:15 -05:00
let root = xml::XMLElement::new("name");
2023-03-30 23:25:47 -05:00
2023-04-01 07:52:15 -05:00
println!("{}", root.to_string())
2023-03-30 23:25:47 -05:00
}