1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-07-11 01:10:33 +02:00
Files
rustlings/src/util.rs

6 lines
86 B
Rust
Raw Normal View History

2019-01-09 20:33:43 +01:00
use std::fs::remove_file;
pub fn clean() {
let _ignored = remove_file("temp");
}