Help for this page

Select Code to Download


  1. or download this
    use Common.pm;
    my $returnvalue = somesub();
    
  2. or download this
    sub somesub {
        ...create value...
        return($value);
    }
    1;
    
  3. or download this
    use Common.pm;
    my $returnvalue = Common->somesub();
    
  4. or download this
    package Common;
    sub somesub {
    ...
        return($value);
    }
    1;