Juerd <[EMAIL PROTECTED]> writes:

> I wonder now if that can just be
>
>     my $password = any('a'..'z') x 5;

  Wouldn't that generate a junction, and so need a .pick?

    my $password = (any('a'..'z') x 5).pick;


  Or perhaps just leave it a junction, to use as a generator:

    my $any_password = any('a'..'z') x 5;
    my %password = map { $_ => $any_password.pick } @users;


  ... or am I missing something?


Eirik
-- 
Skill without imagination is craftsmanship and gives us many useful objects
such as wickerwork picnic baskets.  Imagination without skill gives us modern
art.
                -- Tom Stoppard

Reply via email to