Revision 4557c6f7b546a7f308bbb0561677858b64e04777 authored by Christophe Maudoux on 17 January 2019, 20:44:27 UTC, committed by Christophe Maudoux on 17 January 2019, 20:44:27 UTC
1 parent b7df16a
Raw File
custom.pm
package My;

sub hello {
    return 'Hello';
}

sub get_additional_arg {
    return $_[0];
}

1;
back to top