Does swift have fall through statement? e.g if I do the following
var testVar = \"hello\" var result = 0 switch(testVal) { case \"one\": result = 1 case
The keyword fallthrough at the end of a case causes the fall-through behavior you're looking for, and multiple values can be checked in a single case.
fallthrough