no-more-secrets-rust/src/sneakers.rs

11 lines
200 B
Rust
Raw Normal View History

2023-11-12 13:37:11 -08:00
#[no_mangle]
pub extern "C" fn rust_sneakers_effect() {
println!("Rust sneakers effect");
use std::time::Duration;
let dur = Duration::from_millis(2000);
std::thread::sleep(dur);
}