<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#!/usr/bin/perl

my $mod = shift @ARGV;

eval "use $mod";

die $@ if $@;

printf "Module: '%s' (%s)\n", $mod, $mod-&gt;VERSION;
</pre></body></html>