Macro skittles::cyan [] [src]

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

Colors the output string cyan.

let name = "Skittles";

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