Help for this page

Select Code to Download


  1. or download this
    Foo1::bar();
    
  2. or download this
    my $obj = bless {},"Foo1";
    
    $obj->bar(); # Calling an instance method. 
                 # this passes DIFFERENT parameters than the class method,
    + above.