From 67cdcc2e12118becb823e20a40cc2687f2b8425a Mon Sep 17 00:00:00 2001 From: Adam Carpenter <53hornet@gmail.com> Date: Wed, 27 Mar 2019 15:32:37 -0400 Subject: Started Rust in Action MEAP. --- functions/Cargo.lock | 4 ---- functions/Cargo.toml | 7 ------- functions/src/main.rs | 10 ---------- 3 files changed, 21 deletions(-) delete mode 100755 functions/Cargo.lock delete mode 100755 functions/Cargo.toml delete mode 100755 functions/src/main.rs (limited to 'functions') 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 "] -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 -} - -- cgit v1.2.3