RosettaCodeData/Task/Conditional-structures/Go/conditional-structures-8.go
2023-07-01 13:44:08 -04:00

10 lines
159 B
Go

switch {
case booleanExpression1:
default:
statements
preliminaryToOtherStatements
fallthrough
case booleanExpression2:
other
statements
}