Help for this page

Select Code to Download


  1. or download this
    package My::Awesome::Package;
    
    use 5.010;
    ...
        next unless my $func_ref = My::Awesome::Package->can( $func );
        say "Found code for '$func': ", $func->();
    }