use API;
use Database;
use Routines;
use Encode qw/encode decode/;
use CGI;
use CGI::Carp;
use File::Basename;
- how can i know where those module come from?
- what kind of doc should i download to see implementation of those function inside these modules?
Thank you in advance, guys. lol
You can use
perldoc -mto see the package’s content:Or the
-lswitch to see where the package is:You can also find all the source at CPAN. Just looking at a single file in isolation generally isn’t that fruitful, you’ll want to look at all the files in the distribution as a coherent whole.
You’ll probably want to familiarize yourself with the other things that
perldoccan do: