ANSI Styling for Rust
```rust use ansi_brush::Style;
fn main() { println!("{} {}", "Hello,".lightcyan().bold(), "World!".reset()); // always put "reset" LAST after each style to revert the previous line's styles println!( "{} {} {} {} {} {} {} {}", "Bold".bold(), "Faint".faint().reset(), "Italic".italic().reset(), "Underline".underline().reset(), "Slow Blink".slowblink().reset(), "Rapid Blink".rapidblink().reset(), "Reverse".reverse().reset(), "Strike".strike().reset() ); // use conclude to stop background bleeding into next lines (try it without conclude!) println!("{}", "Goodbye, Mars!".bgred().underline().italic().conclude().reset()); } ```