Help for this page

Select Code to Download


  1. or download this
    use Carp;
    
    ...
    This is who to blame for sending no args
        main::func2 called at script line 7
        main::func1() called at script line 5
    
  2. or download this
    func( [ 'ary1' => \@ary1 ], [ 'ary2' => \@ary2 ] );
    
    sub func {
        print "Name $_->[0], Array Ref $_->[1]\n" for @_;
    }