ceprintln

Macro ceprintln 

Source
macro_rules! ceprintln {
    ($title:expr, $msg:expr => $color:ident) => { ... };
    ($title:expr, $msg:expr => ($r:expr, $g:expr, $b:expr)) => { ... };
    ($title:expr, $msg:expr) => { ... };
    ($msg:expr => $color:ident) => { ... };
    ($msg:expr => ($r:expr, $g:expr, $b:expr)) => { ... };
    ($msg:expr) => { ... };
}
Expand description

Same as ceprint! but with a newline at the end.