Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
    ...
      print unless $seen{$_}++;
      last unless --$wantedLines;
    }
    
  2. or download this
      unless ( $seen{$_}++ ) {
        print;
        last unless --$wantedLines;
      }