diff options
author | Doug Bell <madcityzen@gmail.com> | 2014-09-03 23:31:55 -0500 |
---|---|---|
committer | Doug Bell <madcityzen@gmail.com> | 2014-09-03 23:31:55 -0500 |
commit | d67a01b8619e59785ac3825c46c2ce8ce2e31b11 (patch) | |
tree | 4303ab49b683843822143ec3b6adfc489f13cbe6 | |
parent | c0c2ae0bf1e88ec807ad9868c8a3f07388a25511 (diff) |
require at least Perl 5.6
The core modules and pragmas being used require at least Perl 5.6 in
order to work. Explicitly saying "use 5.006" will make the error more
clear.
-rw-r--r-- | runtests.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.pl b/runtests.pl index ce72931..7bffe81 100644 --- a/runtests.pl +++ b/runtests.pl @@ -1,4 +1,5 @@ #!/usr/bin/env perl +use 5.006; use warnings; use strict; use utf8; |