mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-14 11:22:55 +02:00
6 lines
86 B
Rust
6 lines
86 B
Rust
use std::fs::remove_file;
|
|
|
|
pub fn clean() {
|
|
let _ignored = remove_file("temp");
|
|
}
|