# Command Line Applications in Rust
## Code History
The code in this repository is based on the
[Command Line Applications in Rust](https://rust-cli.github.io/book/index.html)
online book.
```bash
cargo new grrs
cd grrs/
cargo run
cargo add clap --features derive
touch README.md
```