@@ -0,0 +1,3 @@
+/.idea
+/target
+/Cargo.lock
@@ -0,0 +1,9 @@
+[package]
+name = "comments"
+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,8 @@
+# 03 - Comments
+## Build & run
+```
+cargo run
@@ -0,0 +1,10 @@
+fn main() {
+ // This is a single line comment.
+ /* This
+ * is
+ * a
+ * multiline
+ * comment */
+ println!("Hello, world!");
+}