RosettaCodeData/Task/Conditional-structures/V-(Vlang)/conditional-structures-4.v

15 lines
195 B
V

match true {
boolean_expression1 {
statements
}
boolean_expression2 {
other
statements
}
else {
last
resort
statements
}
}