Head's Up: JavaScript is either turned off or not working properly in your browser. Some parts of this page may not work properly.
use std::{thread, time}; fn main() { let sleep_time = time::Duration::from_millis(1000); println!("hello"); thread::sleep(sleep_time); println!("sleep"); }
TODO: make a GIF showing the output