in reply to uc() every other letter
my @alpha = ('a' .. 'z'); @alpha = map { $_ % 2 ? uc $alpha[$_] : $alpha[$_] } 0..25; [download]
"The first rule of Perl club is you don't talk about Perl club."