pub fn println_style<T: Display>(msg: T, sty: TextStyle)
Expand description

Print to stdout with text style.

Example

use term_basics_linux as tbl;
tbl::println_style("I am bold.", tbl::TextStyle::Bold);