diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-02-19 17:08:00 -0500 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-02-19 17:08:00 -0500 |
commit | 7d5500f62c1eb316682d6c8de314d2b181c5248a (patch) | |
tree | bb83c621c03dfc08cd56384305b4e72fc4bbe47c /minigrep | |
parent | a48940b60367f94c50b6782d8883110b76a356e8 (diff) | |
download | learning-rust-7d5500f62c1eb316682d6c8de314d2b181c5248a.tar.xz learning-rust-7d5500f62c1eb316682d6c8de314d2b181c5248a.zip |
Added minigrep.
Diffstat (limited to 'minigrep')
-rw-r--r-- | minigrep/Cargo.toml | 7 | ||||
-rw-r--r-- | minigrep/src/main.rs | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/minigrep/Cargo.toml b/minigrep/Cargo.toml new file mode 100644 index 0000000..6a8174c --- /dev/null +++ b/minigrep/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "minigrep" +version = "0.1.0" +authors = ["Adam Carpenter <53hornet@gmail.com>"] +edition = "2018" + +[dependencies] diff --git a/minigrep/src/main.rs b/minigrep/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/minigrep/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |