From 8a4d2fb922c2c5a9e900b4b836d7787a09a1fe90 Mon Sep 17 00:00:00 2001 From: Adam Carpenter <53hornet@gmail.com> Date: Wed, 13 Mar 2019 10:02:15 -0400 Subject: Added concurrency, pointers, oop --- add/Cargo.toml | 7 +++++++ add/add-one/Cargo.toml | 8 ++++++++ add/add-one/src/lib.rs | 11 +++++++++++ add/adder/Cargo.toml | 9 +++++++++ add/adder/src/main.rs | 6 ++++++ 5 files changed, 41 insertions(+) create mode 100644 add/Cargo.toml create mode 100644 add/add-one/Cargo.toml create mode 100644 add/add-one/src/lib.rs create mode 100644 add/adder/Cargo.toml create mode 100644 add/adder/src/main.rs (limited to 'add') diff --git a/add/Cargo.toml b/add/Cargo.toml new file mode 100644 index 0000000..37b9688 --- /dev/null +++ b/add/Cargo.toml @@ -0,0 +1,7 @@ +[workspace] + +members = [ + "adder", + "add-one", +] + diff --git a/add/add-one/Cargo.toml b/add/add-one/Cargo.toml new file mode 100644 index 0000000..88d65d1 --- /dev/null +++ b/add/add-one/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "add-one" +version = "0.1.0" +authors = ["Adam Carpenter <53hornet@gmail.com>"] +edition = "2018" + +[dependencies] +rand = "0.3.14" diff --git a/add/add-one/src/lib.rs b/add/add-one/src/lib.rs new file mode 100644 index 0000000..fe3583e --- /dev/null +++ b/add/add-one/src/lib.rs @@ -0,0 +1,11 @@ +pub fn add_one(x: i32) -> i32 { + x + 1 +} + +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} diff --git a/add/adder/Cargo.toml b/add/adder/Cargo.toml new file mode 100644 index 0000000..1fefcc2 --- /dev/null +++ b/add/adder/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "adder" +version = "0.1.0" +authors = ["Adam Carpenter <53hornet@gmail.com>"] +edition = "2018" + +[dependencies] +add-one = { path = "../add-one" } + diff --git a/add/adder/src/main.rs b/add/adder/src/main.rs new file mode 100644 index 0000000..7099fb8 --- /dev/null +++ b/add/adder/src/main.rs @@ -0,0 +1,6 @@ +use add_one; + +fn main() { + let num = 10; + println!("{}", add_one::add_one(num)); +} -- cgit v1.2.3