RosettaCodeData/Task/Conditional-structures/Go/conditional-structures-8.go
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

10 lines
159 B
Go

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