Help for this page

Select Code to Download


  1. or download this
     my @list = qw( ... );
    
     my %hash;
     undef @hash{@list};
     print $_, "\n" for keys %hash;
    
  2. or download this
     my @list = qw( ... );
     my %hash;
     grep { $hash{$_}++ } @list;
     print $_, "\n" foreach keys %hash;