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

12 lines
145 B
Go
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
switch {
case booleanExpression1:
statements
case booleanExpression2:
other
statements
default:
last
resort
statements
}