Macro skittles::green [] [src]

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

Colors the output string green.

let name = "Skittles";

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