What does an ordinary Go switch do after finding a matching case?
switch
It automatically executes every later case.
It checks cases from bottom to top and chooses the last match.
It ignores the match and always executes default.
default
It executes the first matching case and then exits the switch.