diff options
author | Adam Carpenter <53hornet@gmail.com> | 2019-03-15 15:19:05 -0400 |
---|---|---|
committer | Adam Carpenter <53hornet@gmail.com> | 2019-03-15 15:19:05 -0400 |
commit | fb82d9778bd3537988bd02dd944a2ae03a4855f3 (patch) | |
tree | 53843bddf8b17ca2002ff81697686366f92ce59c /patterns | |
parent | 8a4d2fb922c2c5a9e900b4b836d7787a09a1fe90 (diff) | |
download | learning-rust-fb82d9778bd3537988bd02dd944a2ae03a4855f3.tar.xz learning-rust-fb82d9778bd3537988bd02dd944a2ae03a4855f3.zip |
Added patterns.
Diffstat (limited to 'patterns')
-rw-r--r-- | patterns/Cargo.toml | 7 | ||||
-rw-r--r-- | patterns/src/main.rs | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/patterns/Cargo.toml b/patterns/Cargo.toml new file mode 100644 index 0000000..784a66d --- /dev/null +++ b/patterns/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "patterns" +version = "0.1.0" +authors = ["Adam Carpenter <53hornet@gmail.com>"] +edition = "2018" + +[dependencies] diff --git a/patterns/src/main.rs b/patterns/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/patterns/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |