Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my $username; foreach (@usernames) { if (!exists $usernames{$_}) { $username = $_; last; } } [download]