peanuts/src/main.rs

21 lines
517 B
Rust
Raw Normal View History

2024-11-02 02:59:40 +00:00
use peanuts::xml::composers::Composer;
2024-10-31 20:54:19 +00:00
use peanuts::xml::parsers::Parser;
use peanuts::xml::Document;
2024-06-25 23:14:21 +01:00
2024-11-02 02:59:40 +00:00
#[tokio::main]
async fn main() {
let (rest, document) = Document::parse(
2024-06-25 23:14:21 +01:00
"<?xml version=\"1.0\"?>
<TEST>
<block1>Background Mark 1</block1>
<block2>Background Mark 2</block2>
<block3>Background Mark 3</block3>
2024-06-25 23:25:48 +01:00
</TEST>ahsdkjlfhasdlkjfhkljh
2024-06-25 23:14:21 +01:00
",
2024-11-02 02:59:40 +00:00
)
.unwrap();
println!("{:#?}{}", document, rest);
let mut stdout = tokio::io::stdout();
document.write(&mut stdout).await.unwrap();
2024-06-25 23:14:21 +01:00
}