aboutsummaryrefslogblamecommitdiffstats
path: root/test/termios.rs
blob: 3683ceee641add9991c2a638874c71fc4ec0e326 (plain) (tree)
1
2
3
4
5
6
7
8
9



                         

                                            


                                                
extern mod term;

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