What is the syntax for assigning values to variables. For example if I want to limit the new password to at least 8 characters, should I do:
$MINLEN = 8; #anywhere in the script body.
or declare:
my $var = new Data::Password;
$var->MINLEN = 8;
Thanks