1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-12-14 11:22:55 +02:00
rustlings/src/util.rs

6 lines
86 B
Rust
Raw Normal View History

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