summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--patterns/Cargo.toml7
-rw-r--r--patterns/src/main.rs3
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!");
+}