Macro skittles::black [] [src]

macro_rules! black {
    ( $($input:tt)* ) => { ... };
}

Colors the output string black.

let name = "Skittles";

black!("Taste the rainbow...");
black!("{} - Taste the rainbow...", name);