in reply to Modules Vs. Manual Coding
I prefer to use modules as much as possible for several reasons:
Even in small tasks I try to make use of modules as much as possible.
For example, you can use a regex to break a filename out of a *nix path. But if you use File::Basename, your code now can handle Win32, MacOS, VMS, and AmigaOS pathnames.
That's a good thing when need to run a Perl based utility on several OSes.
|
|---|