Help for this page

Select Code to Download


  1. or download this
    print unless $should_not_print++;
    print if !$seen++;
    
  2. or download this
    tie my $first, "Trueonce";
    while (<DATA>) {
        print if !$first;
    }