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