1
2
3
4
5
6
7
extern crate termion;

use termion::terminal_size;

fn main() {
    println!("Size is {:?}", terminal_size().unwrap())
}