Multiple subjects
Sometimes it is useful to pattern match on multiple values at the same time in one case expression.
To do this, you can give multiple subjects and multiple patterns, separated by commas.
When matching on multiple subjects there must be the same number of patterns
as there are subjects. Try removing one of the _,
sub-patterns to
see the compile time error that is returned.