in reply to Re^2: Newbie doesn't understand Digest::MD5
in thread Newbie doesn't understand Digest::MD5
Yeouch - I didn't spot that error. You're running your code without use strict; and use warnings;, and either of them would have alerted you (and me) to what actually went wrong:
Perl interpreted the @ondoe in your string as an array variable. That array variable isn't used and hence is empty. You need to use single quotes to prevent variable interpolation by Perl.
Also, you should really start using warnings and strict, as they prevent typos from growing into hidden, hard to track down bugs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Newbie doesn't understand Digest::MD5
by eltorio (Novice) on Apr 19, 2006 at 12:50 UTC | |
by doran (Deacon) on Apr 19, 2006 at 22:29 UTC |