pub fn terminal_size() -> Result<(u16, u16)>
Get the size (columns, rows) of the terminal.
5fn main() { 6 println!("Size is {:?}", terminal_size().unwrap()) 7}