- or download this
while (<USEDPW>) {
my $pw = @chars[map{rand @chars} (1..17)];
...
unless ($_ ne $usedpw) {
print "Your unique ID is: $pw\n";
}
- or download this
while (<USEDPW>)
{
...
{
print "Your unique ID is: $pw\n";
}
- or download this
print "Your unique ID is: $pw\n" if $_ eq $usedpw;