probar 0.1.1

A progress bar.
Documentation
1
2
3
4
5
6
7
8
9
10
use std::{thread::sleep, time::Duration};

use probar::ProgressBar;

fn main() {
    let p = ProgressBar::new(500);
    for _ in p {
        sleep(Duration::from_secs_f64(0.01))
    }
}