in reply to Access to standard module source code?

Hi, you can also pass the  -m flag to perldoc, which will display the entire source of the module.

Shell command:

$ perldoc -m List::MoreUtils
Output:
package List::MoreUtils; use 5.008_001; use strict; use warnings; my $have_xs; ...

Hope this helps!


The way forward always starts with a minimal test.