Example project from the rust book.
Go to file
AJ ONeal 67f288c561 v0.0.0: init project template 2018-09-17 22:05:47 -06:00
src v0.0.0: init project template 2018-09-17 22:05:47 -06:00
.gitignore v0.0.0: init project template 2018-09-17 22:05:47 -06:00
Cargo.toml v0.0.0: init project template 2018-09-17 22:05:47 -06:00
README.md v0.0.0: init project template 2018-09-17 22:05:47 -06:00

README.md

grep.rs

This is my personal exploration of the sample grep project in Chapter 12 of "The Rust Book".

Install Rust

To run this project you first need to install rust:

curl https://sh.rustup.rs -sSf | sh

If you already have rust installed you can update it to the latest version like so:

restup update

Install grep.rs

git clone https://git.coolaj86.com/coolaj86/grep.rs
pushd rust.rs/

History

cargo init --bin --name grep