You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
119 B
Rust

use std::fs;
fn main() {
fs::write("stats3.txt", "Rust is exciting,isn't it?").expect("Unable to write to file");
}