1package Bar;
2use warnings;
3use strict;
4require Exporter;
5our @ISA = qw(Exporter);
6our @EXPORT_OK = qw( func3 );
7sub func3 { 3 }
81;
9