Help for this page

Select Code to Download


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