Help for this page

Select Code to Download


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