Help for this page

Select Code to Download


  1. or download this
      sub password
      {
        my( $s ) = @_;
    ...
          return( $c[ rand @c ], $v[ rand @v ] );
        }
      }
    
  2. or download this
      sub password
      {
        my( $s ) = @_;
    ...
        }
        return @result;
      }
    
  3. or download this
      sub password
      {
        my( $s ) = @_;
    ...
        my @v = split / */, "aeiou";
        return map { $c[ rand @c ], $v[ rand @v ] } 1..4;
      }