Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    require 5.004;
    ...
        my %seen;
        grep { ! $seen{ $_ }++ } @_;
    }
    
  2. or download this
    #!/usr/bin/perl -wT
    use strict;
    ...
    
    # submit values: why bother?
    my ( $_submit )    = ( $__submit =~ /^(why\ bother\?)$/ );