Help for this page

Select Code to Download


  1. or download this
    for my $dir (glob '*/') {
    
  2. or download this
    for my $dir (grep -d, glob '*') {
    
  3. or download this
    sub load_from_path {
        my ($module_path) = @_;
    ...
        my $module_path = ...;
        load_from_path($module_path);
    }