in reply to help me with errors in perl module.

i used right sysntax for export
If you mean this by "right sysntax" (sic!)
our @EXPORT_OK(myFunction);
you are mistaken. To assing to an array, use
our @EXPORT_OK = qw(myFunction);

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