macro_rules! bold { ( $str: tt ) => { ... }; ( $other: expr) => { ... }; }
Makes text bold
println!("{}", bold!("This text is bold")); println!("{}", bold!(red!("This text is bold and red")));