Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings; # you left this out
    ...
    
    my @unique = keys %seen;
    print @unique;
    
  2. or download this
    perl -le '$seen{$_}++ while <>; print keys %seen;'
    
  3. or download this
    perl -lE'$s{$_}++for<>;say keys%s'