Initial commit

This commit is contained in:
Matan Kushner
2019-04-01 23:23:03 -04:00
commit ca3f439012
5 changed files with 158 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#[macro_use]
extern crate clap;
use clap::App;
fn main() {
let matches = App::new("Starship")
.about("The cross-platform prompt for astronauts.")
// pull the version number from Cargo.toml
.version(crate_version!())
.get_matches();
}