6 lines
144 B
Rust
6 lines
144 B
Rust
fn main() {
|
|
println!("Sleeping for 2 seconds...");
|
|
std::thread::sleep(std::time::Duration::from_millis(2000));
|
|
println!("Done.");
|
|
}
|