in reply to help me with errors in perl module.

Change this line
our @EXPORT_OK(myFunction);
to
our @EXPORT_OK = qw (myFunction);

use Perl;
Perl4Everything

Replies are listed 'Best First'.
Re^2: help me with errors in perl module.
by veerubiji (Sexton) on Oct 13, 2011 at 09:09 UTC
    thanks i got it.