1 unstable release
0.1.0 | Jun 30, 2022 |
---|
#874 in Command-line interface
4KB
50 lines
EzColorize
Library to easily change the color of output text
Example
use ez_colorize::ColorizeDebug;
#[derive(Debug)]
struct MyData{}
fn main() {
let a = 23;
println!("{}", a.red());
let my_data = MyData{};
println!("{}", my_data.blue());
}