wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> David Gilden wrote:
> >
> > Hello,
>
> Hello,
>
> > in the following
> >
> > # Goal: check against two different passwords.
> >
> > #!/usr/bin/perl
> > my $qs
David Gilden wrote:
>
> Hello,
Hello,
> in the following
>
> # Goal: check against two different passwords.
>
> #!/usr/bin/perl
> my $qs = 'c';
> my $secret_word = 'a';
> my $secret_word_guest = 'b';
>
> if ($qs !~ /$se
inst two different passwords.
Hello,
in the following
# Goal: check against two different passwords.
#!/usr/bin/perl
my $qs = 'c';
my $secret_word = 'a';
my $secret_word_guest = 'b';
if ($qs !~ /$secret_word_guest|$secret_word/) {
print "fail\n&q
Hello,
in the following
# Goal: check against two different passwords.
#!/usr/bin/perl
my $qs = 'c';
my $secret_word = 'a';
my $secret_word_guest = 'b';
if ($qs !~ /$secret_word_guest|$secret_word/) {
print "fail\n";
} else {