Will the default of a switch statement get evaluated if there\'s a matching case before it?
ex:
switch ($x) { case ($x > 5): print \"foo\"; ca
It would have been easier to try it yourself.
But anyway, if you don't use break in a case, all the the cases following it will be executed (including the default).