Matches against several possible alternatives. For example, @match desc @case "full" @orcase "max" @then 1.0 @case _ @then 0.5 @endmatch
checks if desc is equal to "full" or "max". If so, the result is 1.0, otherwise
(the case underscore matches anything else) the result is 0.5.