Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    my @b = qw(b1 b2 b3 b4 b5);
    
    foo(1,2,3,4,5,@a,@b);
    
  2. or download this
    use strict;
    
    ...
    my @b = qw(b1 b2 b3 b4 b5);
    
    foo(1,2,\@a,\@b);
    
  3. or download this
    use strict;
    
    ...
    my @b = qw(b1 b2 b3 b4 b5);
    
    foo(1,2,\@a,\@b);