summaryrefslogtreecommitdiff
path: root/meap/ch1
diff options
context:
space:
mode:
authorAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
committerAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
commit67cdcc2e12118becb823e20a40cc2687f2b8425a (patch)
treeed92c3234b89079e6d4cf36f5e80c5ffa79def48 /meap/ch1
parente25482fca375d318a39c3b54db396b0db6e0b263 (diff)
downloadlearning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.tar.xz
learning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.zip
Started Rust in Action MEAP.
Diffstat (limited to 'meap/ch1')
-rw-r--r--meap/ch1/Cargo.lock4
-rw-r--r--meap/ch1/Cargo.toml7
-rw-r--r--meap/ch1/src/main.rs28
3 files changed, 39 insertions, 0 deletions
diff --git a/meap/ch1/Cargo.lock b/meap/ch1/Cargo.lock
new file mode 100644
index 0000000..d9d119e
--- /dev/null
+++ b/meap/ch1/Cargo.lock
@@ -0,0 +1,4 @@
+[[package]]
+name = "ch1"
+version = "0.1.0"
+
diff --git a/meap/ch1/Cargo.toml b/meap/ch1/Cargo.toml
new file mode 100644
index 0000000..b8034fe
--- /dev/null
+++ b/meap/ch1/Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "ch1"
+version = "0.1.0"
+authors = ["Adam Carpenter <53hornet@gmail.com>"]
+edition = "2018"
+
+[dependencies]
diff --git a/meap/ch1/src/main.rs b/meap/ch1/src/main.rs
new file mode 100644
index 0000000..cbeadc4
--- /dev/null
+++ b/meap/ch1/src/main.rs
@@ -0,0 +1,28 @@
+//use std::rc::Rc;
+//use std::sync::{Arc, Mutex};
+
+fn main() {
+// let a = 10;
+//
+// if a == 10 {
+// println!("a eq ten");
+// }
+
+
+// let a = 10; // stack
+// let b = Box::new(10); // heap
+// let c = Rc::new(10); // heap, reference count
+// let d = Arc::new(Mutex::new(10)); // mutex lock, atomic reference counter
+// println!("{} {} {} {:?}", a, b, c, d);
+
+
+ let english = "Hello, world!";
+ let german = "Grüß Gott!";
+ let japanese = "ハロー・ワール";
+ let languages = [english, german, japanese];
+
+ for language in languages.iter() {
+ println!("{}", language);
+ }
+}
+