in reply to what module gets loaded with perl program by default ?
If you don't use use or require then no modules are loaded. Out of the box Perl is a very capable language with powerful string, array and hash manipulation built in. In the sense that you imply, no modules are loaded automatically. You should of course always use strictures (use strict; use warnings;), although they are actually pragmas rather than modules and are effectively built in.
|
|---|