Practical-System-Programmin.../Chapter06/miscellaneous/snippet3.rs

4 lines
93 B
Rust
Raw Normal View History

2020-12-19 18:39:31 +00:00
use std::fs;
fn main() {
fs::copy("stats1.txt", "stats2.txt").expect("Unable to copy");
}