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

6 lines
94 B
Coq
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if boolean_expression1 {
statements
} else if boolean_expression2 {
otherStatements
}