mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 20:01:22 +00:00
8 lines
121 B
Rust
8 lines
121 B
Rust
extern crate termion;
|
|
|
|
use termion::terminal_size;
|
|
|
|
fn main() {
|
|
println!("Size is {:?}", terminal_size().unwrap())
|
|
}
|