Zero-dependency, high-performance CLI framework with colors, progress bars, tables, prompts, and more. Build stunning terminal applications with ease.
cargo add zfish[dependencies]
zfish = "0.1"use zfish::{style::Color, print};
fn main() {
print("Hello, ", Color::Green);
print("ZFish!", Color::Blue.bold());
println!();
}