# myfirstaddin.pm package myfirstaddin; BEGIN { require Exporter; our @ISA = qw( Exporter ); our @EXPORT_OK = qw( runonce ); } # Other "use" statements go here. sub runonce { print "This is file myfirstaddin."; } 1;