Help for this page

Select Code to Download


  1. or download this
    open my $fh1, "<", $file1 or die "Cannot open file $file1: $!";
    open my $fh1, "<", $file2 or die "Cannot open file $file2: $!";
    
  2. or download this
    use strict;
    use warnings;
    ...
        chomp($test2 //= '');
        say "$test1, $test2";
    }