- or download this
use strict;
use warnings;
...
$reg = \INIT();
push(@addons, $reg);
- or download this
sub INIT {
...
print "Hello, $name!";
}
- or download this
$addons[0]->INIT("Jesus");
- or download this
package addon1;
...
}
return "addon1";
- or download this
my $pluginname = do "addon1.pl";
my $plugin = new $pluginname;
...
$plugin->ACE_INIT(\$test);
print $test . "\n";