Help for this page

Select Code to Download


  1. or download this
    my $module = "Digest::MD5";
    eval 'use $module'; # note single quotes
    
  2. or download this
    my $module;
    BEGIN { $module = "Digest::MD5"; }
    use $module;