Help for this page

Select Code to Download


  1. or download this
    print CSV $_, scalar <$fa>, scalar <$fb>, scalar <$fc>;
    
  2. or download this
      my $line_a = <$fa>;
      my $line_b = <$fb>;
      my $line_c = <$fc>;
    
      print CSV $_, $line_a, $line_b, $line_c;