| 12345678910111213141516171819 |
- use std::process;
- use shell::Shell;
- use std::io;
-
- mod command;
- mod shell;
-
-
- fn main() {
- let stdin = io::stdin();
-
- let stdout = io::stdout();
-
- let mut s = Shell::new(stdin.lock(), stdout.lock(), "schell".to_string());
- match s.start() {
- Ok(_) => process::exit(0),
- Err(_) => process::exit(1),
- }
- }
|