qtmd 0.1.1

better name for tqdm
Documentation
1
2
3
4
5
6
7
8
use qtmd::qtmd;
use std::{thread::sleep, time::Duration};

fn main() {
    for _ in qtmd(0..10000) {
        sleep(Duration::from_millis(1));
    }
}