package Dog { use strict; use warnings; use Exporter qw( import ); our $VERSION = 1.00; our @EXPORT_OK = qw( dog ); sub dog { shift } 1; }