http://qs321.pair.com?node_id=11138839


in reply to Re^2: What technical benfits perl offers over python + few more questions.
in thread What technical benfits perl offers over python + few more questions.

Which is good for "code reuse"

Doing

package Modulino; sub main { } caller() ? 1 : main;
perl "$( perldoc -lm Modulino )"
is not better for code reuse over the traditional
package Modulino; sub main { } 1
perl -MModulino -emain