Help for this page

Select Code to Download


  1. or download this
    my $returnvalue = Common->somesub();
    
  2. or download this
    my $returnvalue = Common::somesub();
    
  3. or download this
    package Foo;
    sub bar { print join( ',', @_ ) . "\n"; }
    ...
    Foo,arg1
    Baz,arg1
    Undefined subroutine &Bar::bar called at - line 9.