Velocity is a library for creating simple yet stunning text interfaces in the terminal.
```rust use velocity::progress::{Bar, Styles}; use velocity::colors::Paint;
fn main() { let mut mybar = Bar::new(Styles::Square); mybar.settitle("Loading cute kittens..."); mybar.set_width(80); // 80 Percent terminal width
my_bar.start();
for i in 0..=100 {
my_bar.jump(i);
std::thread::sleep(std::time::Duration::from_millis(100));
}
my_bar.end();
println!("{}", "Kittens loaded!!!".green().bold().underline())
} ```