Subject: | Problems when trying to export :terse from Math::Vec under Perl5.6 |
Line 4 of Calc.pm
use Math::Vec qw(NewVec :terse);
causes my Perl 5.6 installation to croak. Changing it to:
use Math::Vec qw(:terse NewVec);
seems to fix the problem. Perl 5.8 doesn't seem to mind either way.