@@ -0,0 +1,3 @@
+/.idea
+/target
+/Cargo.lock
@@ -0,0 +1,9 @@
+[package]
+name = "variables"
+version = "0.1.0"
+authors = ["Emilio González Montaña <emilio@ociotec.com>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+[dependencies]
@@ -0,0 +1,7 @@
+# 04 - Variables
+## Build & run
+```
+cargo run
@@ -0,0 +1,6 @@
+fn main() {
+ let mut x = 45;
+ println!("The value of x is {}", x);
+ x = 60;
+}