Nested...If Expression
let nested\_conditions = 89;
if nested_conditions == 89 {
let just\_a\_value = 98;
if just_a_value >= 97 {
println!("Greater than 97");
}
}
Comments
let nested\_conditions = 89;
if nested_conditions == 89 {
let just\_a\_value = 98;
if just_a_value >= 97 {
println!("Greater than 97");
}
}