Help for this page

Select Code to Download


  1. or download this
    my @arr1= qw(A few things);
    my @arr2= qw(Two vals);
    my @arr3= (1,2,3);
    my_function("string1",@arr1,@arr2,"string2",@arr3);
    my_function(qw(string1 A few things Two vals string2),1,2,3);