blob: e91fa54308d0f6c5b42935c9de0a221c0ff88771 [file] [log] [blame]
extern crate termion;
use termion::terminal_size;
fn main() {
println!("Size is {:?}", terminal_size().unwrap())
}