Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        (print '.'), next if ( 4 == $l_rec);
        print $l_rec;
    }
    
  2. or download this
    foreach my $l_rec (@l_test) {
        if ( 4 == $l_rec) {
            print '.';
            next;
        }