The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package ExampleView;
use Moose::Role;
use namespace::autoclean;

around process => sub {
    my ($orig, $self, $c) = @_;
    $c->res->body("Processed by view " . blessed($self));
};

1;