mirror of
https://github.com/PacktPublishing/Practical-System-Programming-for-Rust-Developers.git
synced 2024-11-10 19:10:45 +00:00
4 lines
93 B
Rust
4 lines
93 B
Rust
|
use std::fs;
|
||
|
fn main() {
|
||
|
fs::copy("stats1.txt", "stats2.txt").expect("Unable to copy");
|
||
|
}
|