if Expressions
if
expressions are used to determine
if a section of code should be run or not.
They are created with:
- The
if
keyword - A condition to check
- A block of code to run if the condition is true.
The condition in the example below checks to see if the
number 3
is less than the number 4
using the <
math
symbol like this:
3 < 4
Since the 3
is less than 4
the condition is
true so we'll see the output the condition is true
.
SOURCE CODE
fn main() {
if 3 < 4 {
println!("the condition is true");
}
}