Macro lsio::repeat_color [] [src]

macro_rules! repeat_color {
    ($color:expr, $e:expr, $text:expr, $size:expr) => { ... };
}

repeat_color - Prints out a repeat of characters in a specific color.

Currently prints characters using the color specified.

Example

repeat_color!(term::color::RED, "=", "", 80);Run