Help for this page

Select Code to Download


  1. or download this
    package MainModule;
    use YourModule ();
    my $ret = YourModule::yourFunction();
    
  2. or download this
    package MyObject;
    use base 'YourModule';
    ...
    
    my $instance = MyObject->new();
    my $ret = $instance->yourFunction();