1 2 3 4 5 6 7 8 9 10 11 12
//! cargo run --example prepend use file_editor::Editor; use std::path::Path; fn main() -> std::io::Result<()> { let p = Path::new("examples/sandbox/prepend.txt"); Editor::create(p)? .append("world\n") .prepend("hello ") .save()?; Ok(()) }