I remember seeing some comment somewhere that
use warnings;
use strict;
was preferable (rather than use'ing strict first, as I was wont to do). Is my memory correct? Does the order matter and, if it does, in what way?
|
|
I can't see how there is any technical reason for the order being significant. I always put |
|||
|
|
Simple: If you do Actually, I've always done it the other way. The anal retentive in me made me put the two pragmas alphabetically. I never knew there was a reason to do it one way or another. Heck, perldoc use shows placing I suspect there's a cultural reason. Originally in Perl, to use warnings, you use to use
on the first line of your program. The
When the
One of the things I like about Stackoverflow is that you can learn new things you never knew before. I'd love to see if someone has an actual reason why it should be one way and not another. |
|||
|
|
|
I thought, maybe, on Perl 5.8.9 and older where
That was a shot in the dark. I am led to conclude that so long as there are no intervening statements, the order is immaterial. |
|||
|
|