red_bold_blink/
main.rs

1use ansi_colors::*;
2fn main(){
3    let mut str1 = ColouredStr::new("hello world");
4    str1.red();
5    str1.bold();
6    str1.blink();
7    println!("{}",str1);
8}