The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package InheritanceParent;
use strict;
use warnings;

use Exporter::Declare qw/default_export import/;

default_export the_export => sub {
    return 'the_export';
};

1;