Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910
  1. use std::process;
  2. mod shell;
  3. fn main() {
  4. let mut s = Shell::new(..);
  5. match s.start() {
  6. Ok(_) => process::exit(0),
  7. Err(_) => process::exit(1),
  8. }
  9. }