http://qs1969.pair.com?node_id=11108474


in reply to Re: Strict and warnings: which comes first?
in thread Strict and warnings: which comes first?

I usually put a use VERSION line before them. Most of my modules start off with something like:

use 5.008; use strict; use warnings;

... before even the package statement.