pub fn print_cols<T: Display>(msg: T, fg: UC, bg: UC)
Expand description

Print to stdout with text and background colours.

Example

use term_basics_linux as tbl;
tbl::print_cols("No vegetal!", tbl::UC::Green, tbl::UC::Black);