Help for this page
die <<HELP unless @ARGV == 2; usage: transform.pl <word1> <word2> ... my $left = shift(@ARGV) || 'love'; my $right = shift(@ARGV) || 'shit';
for ($left, $right) { $_ = lc; tr/A-Za-z//cd; }