We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61bea43 commit 21b36bcCopy full SHA for 21b36bc
RUST.md
@@ -31,5 +31,17 @@ so &mut isn't needed that often.
31
Passing by reference is important when we have a large object and don't wish to copy it.
32
```
33
34
+```
35
+A C programmer pronounces & as 'address of'; a Rust programmer pronounces it 'borrow'.
36
+This is going to be the key word when learning Rust.
37
38
+
39
40
+Borrowing is the name given to a common pattern in programming
41
+; whenever you pass something by reference (as nearly always happens in dynamic languages) or pass a pointer in C.
42
43
+Anything borrowed remains owned by the original owner.
44
45
46
## References
47
- [Rust: Gentle Intro](https://stevedonovan.github.io/rust-gentle-intro/)
0 commit comments