mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-07-11 01:10:33 +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");
|
||
|
}
|