Is there a reason to use warnings before use strict?

Viewed 815

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?

3 Answers
Related