- or download this
$mod = 'My::Module1';
eval "use $mod";
- or download this
$mod = 'My::Module1';
($mod_file = $mod) =~ s{::}{/}g;
$mod_file .= '.pm';
require $mod_file;
$mod->import if $mod->can('import');
- or download this
$mod = 'My::Module1';
eval "require $mod";
$mod->function();