summaryrefslogtreecommitdiff
path: root/functions
diff options
context:
space:
mode:
Diffstat (limited to 'functions')
-rwxr-xr-xfunctions/.gitignore2
-rwxr-xr-xfunctions/Cargo.lock4
-rwxr-xr-xfunctions/Cargo.toml7
-rwxr-xr-xfunctions/src/main.rs10
4 files changed, 23 insertions, 0 deletions
diff --git a/functions/.gitignore b/functions/.gitignore
new file mode 100755
index 0000000..53eaa21
--- /dev/null
+++ b/functions/.gitignore
@@ -0,0 +1,2 @@
+/target
+**/*.rs.bk
diff --git a/functions/Cargo.lock b/functions/Cargo.lock
new file mode 100755
index 0000000..89a654d
--- /dev/null
+++ b/functions/Cargo.lock
@@ -0,0 +1,4 @@
+[[package]]
+name = "functions"
+version = "0.1.0"
+
diff --git a/functions/Cargo.toml b/functions/Cargo.toml
new file mode 100755
index 0000000..656b779
--- /dev/null
+++ b/functions/Cargo.toml
@@ -0,0 +1,7 @@
+[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
new file mode 100755
index 0000000..43284ff
--- /dev/null
+++ b/functions/src/main.rs
@@ -0,0 +1,10 @@
+fn main() {
+ let x = plus_one(5);
+
+ println!("The value of x is {}", x);
+}
+
+fn plus_one(x: i32) -> i32 {
+ x + 1
+}
+