summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/Cargo.lock4
-rwxr-xr-xfunctions/Cargo.toml7
-rwxr-xr-xfunctions/src/main.rs10
3 files changed, 0 insertions, 21 deletions
diff --git a/functions/Cargo.lock b/functions/Cargo.lock
deleted file mode 100755
index 89a654d..0000000
--- a/functions/Cargo.lock
+++ /dev/null
@@ -1,4 +0,0 @@
-[[package]]
-name = "functions"
-version = "0.1.0"
-
diff --git a/functions/Cargo.toml b/functions/Cargo.toml
deleted file mode 100755
index 656b779..0000000
--- a/functions/Cargo.toml
+++ /dev/null
@@ -1,7 +0,0 @@
-[package]
-name = "functions"
-version = "0.1.0"
-authors = ["Adam Carpenter <carpenat@ES.AD.ADP.COM>"]
-edition = "2018"
-
-[dependencies]
diff --git a/functions/src/main.rs b/functions/src/main.rs
deleted file mode 100755
index 43284ff..0000000
--- a/functions/src/main.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-fn main() {
- let x = plus_one(5);
-
- println!("The value of x is {}", x);
-}
-
-fn plus_one(x: i32) -> i32 {
- x + 1
-}
-