Help for this page

Select Code to Download


  1. or download this
    use warnings;
    
    ...
    $ref_array2=\@array2;
    
    system("print.pl",$ref_array1,$ref_array2);
    
  2. or download this
    use warnings;
    ($ref_arr1,$ref_arr2)=@ARGV;
    
    print @$ref_arr1;
    print @$ref_arr2;