kernelstub-rs/src/main.rs

12 lines
219 B
Rust

extern crate clap;
use clap::{Arg, App, Subcommand};
fn main() {
println!("Hello, world!");
App::new("myapp")
.version("1.0")
.author("vbatts")
.about("farts")
.get_matches();
}