#!/usr/bin/perl

my $mod = shift @ARGV;

eval "use $mod";

die $@ if $@;

printf "Module: '%s' (%s)\n", $mod, $mod->VERSION;