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

fn main () {
    match os::args()[1] {
        ~"echo"   => term::echo(true),
        ~"noecho" => term::echo(false),
        _         => fail!(~"unknown argument"),
    };
}