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

11 lines
152 B
Coq
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
switch expression_of_any_type {
value1 {
statements
}
value2, value3, value4 {
other
statements
}
else {}
}