Password generator: Difference between revisions

Content added Content deleted
Line 3,105: Line 3,105:
sub password-characters( @char-groups )
sub password-characters( @char-groups )
{
{
( @char-groups xx Inf )
( |@char-groups xx Inf ).map( *.pick );
.map( |* )
.map( *.pick );
}
}