docx-rs/docx-core/examples/hello.rs

12 lines
327 B
Rust
Raw Permalink Normal View History

use docx_rs::*;
2020-01-24 11:50:16 +02:00
pub fn main() -> Result<(), DocxError> {
2022-05-19 10:35:29 +03:00
let path = std::path::Path::new("./output/examples/hello.docx");
let file = std::fs::File::create(path).unwrap();
2020-01-24 11:50:16 +02:00
Docx::new()
.add_paragraph(Paragraph::new().add_run(Run::new().add_text("Hello")))
.build()
.pack(file)?;
Ok(())
}