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

14 lines
195 B
V

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