bold

Macro bold 

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

Makes text bold

bold

ยงExample

    println!("{}", bold!("This text is bold"));
    println!("{}", bold!(red!("This text is bold and red")));