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 2008-01-11 16:40:12-08 by alexandernew
Version #
How can I get the version of gd module? I need to do this from script because I have no access to files.
Direct Responses: 13564 | Write a response
Posted on 2011-11-30 08:40:11.713143-08 by ths in 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"'
Direct Responses: Write a response