From ef1bf4921ee4127d461eec03a14c9070d193345c Mon Sep 17 00:00:00 2001 From: Adam Carpenter Date: Mon, 11 Feb 2019 16:59:01 -0500 Subject: Init. --- functions/.gitignore | 2 ++ functions/Cargo.lock | 4 ++++ functions/Cargo.toml | 7 +++++++ functions/src/main.rs | 10 ++++++++++ 4 files changed, 23 insertions(+) create mode 100755 functions/.gitignore create mode 100755 functions/Cargo.lock create mode 100755 functions/Cargo.toml create mode 100755 functions/src/main.rs (limited to 'functions') 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 "] +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 +} + -- cgit v1.2.3