in reply to Re: Loading a Module from a Variable
in thread Loading a Module from a Variable
The errors I am getting are "Global symbol @ISA requires explicit package name..."package testmod; use DynaLoader; use Exporter; BEGIN { @ISA = qw(Exporter, DynaLoader); @EXPORT = qw(testfunc); @EXPORT_OK = qw(); } use strict; sub testfunc { ... } 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Loading a Module from a Variable
by nobull (Friar) on Sep 21, 2005 at 16:46 UTC |