Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
9
Task/Write-entire-file/Rust/write-entire-file.rust
Normal file
9
Task/Write-entire-file/Rust/write-entire-file.rust
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
use std::fs::File;
|
||||
use std::io::Write;
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
let data = "Sample text.";
|
||||
let mut file = File::create("filename.txt")?;
|
||||
write!(file, "{}", data)?;
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue