summaryrefslogtreecommitdiff
path: root/add
diff options
context:
space:
mode:
authorAdam Carpenter <53hornet@gmail.com>2019-03-13 10:02:15 -0400
committerAdam Carpenter <53hornet@gmail.com>2019-03-13 10:02:15 -0400
commit8a4d2fb922c2c5a9e900b4b836d7787a09a1fe90 (patch)
treeafb760597bf4cc78194892be910febde0209f7f3 /add
parentb71e253b697bae079a0cf2526209334f4b81f9a5 (diff)
downloadlearning-rust-8a4d2fb922c2c5a9e900b4b836d7787a09a1fe90.tar.xz
learning-rust-8a4d2fb922c2c5a9e900b4b836d7787a09a1fe90.zip
Added concurrency, pointers, oop
Diffstat (limited to 'add')
-rw-r--r--add/Cargo.toml7
-rw-r--r--add/add-one/Cargo.toml8
-rw-r--r--add/add-one/src/lib.rs11
-rw-r--r--add/adder/Cargo.toml9
-rw-r--r--add/adder/src/main.rs6
5 files changed, 41 insertions, 0 deletions
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));
+}