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

use strict;
use warnings;
use parent 'Exporter';

our @EXPORT_OK = qw(foo bar);

sub foo {
    return 'called foo';
}

sub bar {
    return 'called bar';
}

1;