use strict; use warnings; use Foo; hello('test'); #### package Foo; use strict; use warnings; use base 'Exporter'; our @EXPORT_OK = qw( hello ); my $hello = hello(); sub hello { my $h = shift; return; } print $hello; 1;