in reply to (MeowChow) Re2: The Mother Tongue
in thread The Mother Tongue

Or you could do:
sub uniq { my %u; @u{@_} = @_; return values %u; } @a = uniq @a;