aboutsummaryrefslogtreecommitdiffstats
path: root/test/termios3.rs
blob: d0512581d6a99a63331a8c96f06f0f18b1840eff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
extern mod term;

fn main () {
    if term::ios::isatty() {
        io::println("tty");
    }
    else {
        io::println("not tty");
    }
}