Macro skittles::red [] [src]

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

Colors the output string red.

let name = "Skittles";

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