1 2 3 4 5 6 7 8 9
use moredurations::MoreDurations; use std::{thread, time::Duration}; fn main() { loop { println!("One Rontosecond"); thread::sleep(Duration::from_rontos(1)); } }