in reply to Common uses of "use"
For Modules:
use strict; use warnings; use re 'taint';
For Scripts:
use strict; use warnings; use 5.010; use Getopt::Long qw/:config bundling/;
Now, there are many others that I use very frequently, but these are the only ones that make it into my template.
Good Day,
Dean
|
|---|