module-version.pl to HTML.

index -|- end

Generated: Tue Feb 2 17:54:46 2010 from module-version.pl 2008/08/07 202.

#!perl -w
# from : http://www.perlmonks.org/?node=37237
use strict;
foreach my $module ( @ARGV ) {
  eval "require $module";
  printf( "%-20s: %s\n", $module, $module->VERSION ) unless ( $@ );
}

index -|- top

checked by tidy  Valid HTML 4.01 Transitional