summaryrefslogtreecommitdiff
path: root/Rust.md
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2025-08-03 22:29:47 +0200
committerJasper Ras <jras@hostnet.nl>2025-08-03 22:29:47 +0200
commit931eb0894e7cd3717f1218f0eb06382b11734c13 (patch)
treeb6ad9b0d98a8f26e496c91ad3f24d1c855b654df /Rust.md
parentaf98004d2cf437603f47f4224110a80d76d0d7de (diff)
vault backup: 2025-08-03 22:29:47
Diffstat (limited to 'Rust.md')
-rw-r--r--Rust.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/Rust.md b/Rust.md
index e69de29..1733c8f 100644
--- a/Rust.md
+++ b/Rust.md
@@ -0,0 +1,17 @@
+[[Why it is good to learn rust]]
+[[Cargo]]
+[[Items that are always imported by default in Rust are called the prelude]]
+[[Static class functions are called associated functions]]
+[[References are also immutable by default]]
+[[Random numbers in Rust]]
+[[Pattern matching with a match expression]]
+[[Shadowing variables]]
+[[Integers can overflow if compiled with --release]]
+[[Char is a unicode scalar value]]
+[[Unlike integers floats do not have an architecture dependent size]]
+[[Why is it called destructuring]]
+[[Accessing a tuple by index is different from an array]]
+[[An empty tuple is called a unit]]
+[[Primitive values such as the array are allocated on the stack]]
+[[Arrays are useful when you know the length will not change]]
+[[Array notation]]