My superior and I are debating where 'use strict/warnings' should be placed: prior to any use module statement or after? Anyone?
Please start a new thread, snip old messages that are not related.
Generally it doesn't matter since they are both file scoped, meaning they do not impact the module code (unless you are doing -w).
As personal preference, they are absolutely required, so I put them first at the top of my template and never question where or more importantly whether they are there. I also generally group pragma together, then modules, then constants. So you may want to think of them in this light, rather than as 'all things used'. Though I do drop them below the 'package' line probably for no reason in particular.
http://danconia.org
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>