12 lines
215 B
Rust
12 lines
215 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 :(");
|
||
|
}
|
||
|
}
|