in reply to Module info viewer

As for the version extraction, I'd just go with:

my $version= do { no strict 'refs'; ${$module."::VERSION"}; }; if( defined $version ) { push @out, "$module version $version\n"; } else { push @out, "$module, no version\n"; }

        - tye (but my friends call me "Tye")