in reply to Re: switch, transliteration ( tr/// ) of $_ issue
in thread switch, transliteration ( tr/// ) of $_ issue

One should mention that newer versions of Perl do have a sane alternative, that's
use 5.010; given ($foo) { when ($condition) { code } ... }

(described in perlsyn)