RosettaCodeData/Task/Secure-temporary-file/Rust/secure-temporary-file.rs

11 lines
132 B
Rust
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// 202100322 Rust programming solution
use tempfile::tempfile;
fn main() {
let fh = tempfile();
println!("{:?}", fh);
}