[[std.io.write_all]]を使う。 ```rust let mut f = File::create("a.txt")?; let body = "hogehoge".to_string(); f.write_all(body.as_bytes())?; ```