add solutions for flow-control.md

This commit is contained in:
sunface
2022-03-02 21:48:25 +08:00
parent 0f6c587ce7
commit 8019f09714
3 changed files with 225 additions and 12 deletions

View File

@ -90,7 +90,7 @@ fn main() {
```
### while
当条件为 true 时,`while` 将一直循环
🌟🌟 当条件为 true 时,`while` 将一直循环
```rust,editable