moredurations 0.1.0

An extension of `std::time::Duration`
Documentation
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));
    }
}