// Language: Rust
use std::fs;
fn main() -> std::io::Result<()> {
let body = "Snippet content\nline two\n";
fs::write("out.txt", body)?;
Ok(())
}
use std::fs;
fn main() -> std::io::Result<()> {
let body = "Snippet content\nline two\n";
fs::write("out.txt", body)?;
Ok(())
}