In popular imperative languages, switch statements generally \"fall through\" to the next level once a case statement has been matched.
Example:
int
Try this:
case $VAR in normal) echo "This doesn't do fallthrough" ;; fallthrough) echo -n "This does " ;& somethingelse) echo "fall-through" ;; esac