in reply to Re^2: Find Execution time of perl script??
in thread Find Execution time of perl script??

True that warnings, strict, etc. may not be entirely necessary for programs that are only a half-dozen lines long, but:
  1. It's good to display them in sample code which new initiates may emulate
  2. You never know when your basic 6-line program may start evolving into something more substantial
  3. For some of us, -wT and use strict are such habits that it's more work to exclude them than to include them

Replies are listed 'Best First'.
Re^4: Find Execution time of perl script??
by McDarren (Abbot) on Jun 05, 2006 at 17:28 UTC
    Too true.

    In fact, I use a vim skeleton.pl file that looks like so:

    ~ cat skeleton.pl #!/usr/bin/perl -w use strict; use Data::Dumper::Simple;

    So yes, in my case at least - it is actually more trouble for me to not use strict and warnings :)