Sign in
rust
/
rust-by-example
/
refs/heads/master
/
.
/
src
/
flow_control.md
blob: 79ef7e1f6c5e1b1a904ba21159bd3e24a5b8df72 [
file
] [
log
] [
blame
] [
view
] [
edit
]
# Flow of Control
An
integral part of any programming language are ways to modify control flow
:
`if`
/
`else`
,
`for`
,
and
others
.
Let
's talk about them in Rust.