Macro skittles::white [] [src]

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

Colors the output string white.

let name = "Skittles";

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