Why is the Switch module deprecated in Perl?
module, perl, switch-statement
Solution
Perl 5.10 introduced a real switch called given-when
The old Switch used source filtering and had other limitations.
Problem
Why was the Switch module deprecated in Perl 5.12? I know that a `switch`/`case` be made with `elsif`, but I don't like that very much.