11 lines
159 B
Go
11 lines
159 B
Go
|
|
switch {
|
||
|
|
case booleanExpression1:
|
||
|
|
default:
|
||
|
|
statements
|
||
|
|
preliminaryToOtherStatements
|
||
|
|
fallthrough
|
||
|
|
case booleanExpression2:
|
||
|
|
other
|
||
|
|
statements
|
||
|
|
}
|