in reply to Re: random passgen
in thread random passgen

The int's are redundant as well. The idiom for grabbing a random item of an array is just:
my $one_char_at_random = $chars[rand @chars];
No point in adding noise parens or noisy int functions.

-- Randal L. Schwartz, Perl hacker