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