File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 7
7
* [ Learn Rust] ( learn-rust.md )
8
8
* [ Effective Rust] ( effective-rust.md )
9
9
* [ The Stack and the Heap] ( the-stack-and-the-heap.md )
10
- * [ ` Debug ` and ` Display ` ] ( debug-and-display.md )
10
+ * [ Debug and Display] ( debug-and-display.md )
11
11
* [ Testing] ( testing.md )
12
12
* [ Documentation] ( documentation.md )
13
13
* [ Iterators] ( iterators.md )
14
14
* [ Concurrency] ( concurrency.md )
15
15
* [ Error Handling] ( error-handling.md )
16
16
* [ FFI] ( ffi.md )
17
- * [ ` Deref ` coercions] ( deref-coercions.md )
17
+ * [ Deref coercions] ( deref-coercions.md )
18
18
* [ Syntax and Semantics] ( syntax-and-semantics.md )
19
19
* [ Variable Bindings] ( variable-bindings.md )
20
20
* [ Primitive Types] ( primitive-types.md )
21
21
* [ Functions] ( functions.md )
22
22
* [ Comments] ( comments.md )
23
- * [ ` if ` ] ( if.md )
24
- * [ ` for ` loops] ( for-loops.md )
25
- * [ ` while ` loops] ( while-loops.md )
23
+ * [ if ] ( if.md )
24
+ * [ for loops] ( for-loops.md )
25
+ * [ while loops] ( while-loops.md )
26
26
* [ Ownership] ( ownership.md )
27
27
* [ References and Borrowing] ( references-and-borrowing.md )
28
28
* [ Lifetimes] ( lifetimes.md )
Original file line number Diff line number Diff line change 1
- % ` Debug ` and ` Display `
1
+ % Debug and Display
2
2
3
3
Coming soon!
Original file line number Diff line number Diff line change 1
- % ` for ` Loops
1
+ % for Loops
2
2
3
3
The ` for ` loop is used to loop a particular number of times. Rust's ` for ` loops
4
4
work a bit differently than in other systems languages, however. Rust's ` for `
Original file line number Diff line number Diff line change 1
- % ` if `
1
+ % if
2
2
3
3
Rust's take on ` if ` is not particularly complex, but it's much more like the
4
4
` if ` you'll find in a dynamically typed language than in a more traditional
Original file line number Diff line number Diff line change 1
- % ` while ` loops
1
+ % while loops
2
2
3
3
The other kind of looping construct in Rust is the ` while ` loop. It looks like
4
4
this:
You can’t perform that action at this time.
0 commit comments