Help for this page

Select Code to Download


  1. or download this
    my %seen_users;
    for my $user (@users) {
        next if $seen_users{$user}++;   <-- Add this line
        ...
    }
    
  2. or download this
    my @users = qw( John Jane John Jeff );
    
    ...
        next if $seen_users{$user}++;
        print "$user\n";
    }
    
  3. or download this
    John
    Jane
    Jeff