Subject: | package NAMESPACE VERSION syntax not accepted |
As of perl 5.012 you can do...
package Some::Class 2.012;
Where '2.012' is used to set the value of $VERSION
However, perltidy doesn't like this and says...
1: Unexpected '2' after package name 'package Some::Class'
1: package Some::Class 2.012;
---------------- ^
found Number where operator expected (previous token underlined)
J.
I'm using 5.014 on Ubuntu.