We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e6b0c commit be47639Copy full SHA for be47639
src/control-flow-basics.md
@@ -1,3 +1,12 @@
1
# Control Flow Basics
2
3
{{%segment outline}}
4
+
5
+<details>
6
7
+- We will now cover the many kinds of flow control found in Rust.
8
9
+- Most of this will be very familiar to what you have seen in other programming
10
+ languages.
11
12
+</details>
src/control-flow-basics/loops/loop.md
@@ -15,3 +15,10 @@ fn main() {
15
}
16
17
```
18
19
20
21
+- The `loop` statement works like a `while true` loop. Use it for things like
22
+ servers which will serve connections forever.
23
24
0 commit comments