Help for this page

Select Code to Download


  1. or download this
    sub f {
        my (@a,%h) = @_;
    ...
    my @a = qw( a b c );
    my %h = ( d=>4, e=>5, f=>6 );
    f(@a,%h); # Same as f($a[0],$a[1],$a[2],'e',$h{e},'d',$h{d},'f',$h{f})
    
  2. or download this
    The array has 9 elements
    The hash has 0 elements