The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Template::Plugin::UppercaseButCalledReverseVMethod;
use Template::Plugin::VMethods;
@ISA = qw(Template::Plugin::VMethods);
@SCALAR_OPS = qw(reverse);

sub reverse
{
  my $string = shift;
  scalar uc $string;
}

1;