11 lines
132 B
Rust
11 lines
132 B
Rust
|
|
// 202100322 Rust programming solution
|
||
|
|
|
||
|
|
use tempfile::tempfile;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
|
||
|
|
let fh = tempfile();
|
||
|
|
|
||
|
|
println!("{:?}", fh);
|
||
|
|
}
|