Help for this page

Select Code to Download


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