RosettaCodeData/Task/Conditional-structures/V-(Vlang)/conditional-structures-3.v
2023-07-01 13:44:08 -04:00

5 lines
94 B
V

if boolean_expression1 {
statements
} else if boolean_expression2 {
otherStatements
}