I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time
for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or
on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news,
I hope these links will serve you well.
Posted on 2011-11-30 08:40:11.713143-08
by thsin response to 6854
Re: Version #
the usual method to query a version number is the $VERSION variable which is by convention defined in every module.
perl -M$i -e 'print $'$i'::VERSION,"\n"'
e.g.
perl -MGD -e 'print $GD::VERSION,"\n"'