RosettaCodeData/Task/Conditional-structures/Go/conditional-structures-8.go

11 lines
159 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
switch {
case booleanExpression1:
default:
statements
preliminaryToOtherStatements
fallthrough
case booleanExpression2:
other
statements
}