Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use warnings;
    ...
        print "Num: $call_num called as $call_type\n";
    
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
    # Call as method
    my $obj = Foo->new;
    $obj->function_or_method('2', 'method');