in reply to Re: MD5 Peculiarities
in thread MD5 Peculiarities
Of course, you should also use strict; to alert you when you get undef values.strict doesn't warn for undef values. warnings does, for many circumstances (except when using an undefined value is perfectly fine, for example, in boolean context: undef is a perfectly fine false value) — or simply use the -w command line switch, for example in the shebang line:
#!/usr/local/bin/perl -w
|
|---|