macro_rules! red {
( $str: tt ) => { ... };
( $other: expr) => { ... };
}Expand description

Usage:
println!("{}", red!("This is red"));
printlnc!(red!("This is also red"));
printlnc!(format!("{}, {}.", white!("This is white"), red!("this is red")))Output
