Raw File
custom.pm
package My;

sub hello {
    return 'Hello';
}

sub get_additional_arg {
    return $_[0];
}

1;
back to top