Guest User

Untitled

a guest
Jun 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #![feature(rust_2018_preview, use_extern_macros)]
  2. use clap::App;
  3.  
  4. fn main() {
  5. App::new("myapp")
  6. .version("1.0")
  7. .about("Does great things!")
  8. .author("Kevin K.")
  9. .get_matches();
  10. }
Add Comment
Please, Sign In to add comment