Help for this page

Select Code to Download


  1. or download this
    for my $module (sort keys %INC) {
        (my $namespace = $module) =~ s!/!::!g;
    ...
        print sprintf "Module: %s; Path: %s; Size: %d; VERSION: %s\n",
            $module, $INC{$module}, -s($INC{$module}), $namespace->VERSION
    +;
    }