langcmp/rust/sleeptest.rs
2023-08-24 08:53:49 +02:00

7 lines
128 B
Rust

use std::{thread, time};
pub fn main() {
let sixtysec = time::Duration::from_millis(60000);
thread::sleep(sixtysec);
}