package Foo; use strict; use warnings; use base 'Exporter'; our @EXPORT_OK = ( 'test' ); sub test { my $thing = shift; return $thing; }