mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-23 12:26:19 +00:00
12 lines
216 B
Rust
12 lines
216 B
Rust
extern crate termion;
|
|
|
|
use std::fs;
|
|
|
|
fn main() {
|
|
if termion::is_tty(&fs::File::create("/dev/stdout").unwrap()) {
|
|
println!("This is a TTY!");
|
|
} else {
|
|
println!("This is not a TTY :(");
|
|
}
|
|
}
|