From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
sub one : Relative {
my ( $self, $c ) = @_;
my $a = 0;
my $b = 0;
my $t = $a / $b;
}
sub two : Relative {
my ( $self, $c ) = @_;
$c->forward('/non/existing/path');
}
sub three : Relative {
my ( $self, $c ) = @_;
die("I'm going to die!\n");
}
1;