summaryrefslogtreecommitdiff
path: root/horcrux
diff options
context:
space:
mode:
authorAdam Carpenter <adam.carpenter@adp.com>2019-02-11 16:59:01 -0500
committerAdam Carpenter <adam.carpenter@adp.com>2019-02-11 16:59:01 -0500
commitef1bf4921ee4127d461eec03a14c9070d193345c (patch)
treeab9f4ed73fcf97656743c959ce8c9adbe2ce9924 /horcrux
downloadlearning-rust-ef1bf4921ee4127d461eec03a14c9070d193345c.tar.xz
learning-rust-ef1bf4921ee4127d461eec03a14c9070d193345c.zip
Init.
Diffstat (limited to 'horcrux')
-rwxr-xr-xhorcrux/.gitignore2
-rwxr-xr-xhorcrux/Cargo.toml7
-rwxr-xr-xhorcrux/src/main.rs3
3 files changed, 12 insertions, 0 deletions
diff --git a/horcrux/.gitignore b/horcrux/.gitignore
new file mode 100755
index 0000000..53eaa21
--- /dev/null
+++ b/horcrux/.gitignore
@@ -0,0 +1,2 @@
+/target
+**/*.rs.bk
diff --git a/horcrux/Cargo.toml b/horcrux/Cargo.toml
new file mode 100755
index 0000000..f6996ac
--- /dev/null
+++ b/horcrux/Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "horcrux"
+version = "0.1.0"
+authors = ["Adam Carpenter <carpenat@ES.AD.ADP.COM>"]
+edition = "2018"
+
+[dependencies]
diff --git a/horcrux/src/main.rs b/horcrux/src/main.rs
new file mode 100755
index 0000000..e7a11a9
--- /dev/null
+++ b/horcrux/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}