I understand the tension between too-much modularity and not enough. It's a continuing part of self-aware coding.

Moving more of your code into modules with POD documentation will help make subroutines less burdensome.

Using modules lets you group your code into specific name spaces, and when you use explicit imports, you have an instant reminder where the sub came from.

Using POD lets you use perldoc to read about your code.

Consider this code:

use MyMod qw( foo ); foo( $somearg, $another, 57, 'bunnies' );

I know that foo() comes from MyMod, so I can simply do a perldoc MyMod, to read about foo().

This beats the heck out of:

require './mylib.pl'; foo( $somearg, $another, 57, 'bunnies' ); # mylib.pl
Escpecially since if I refactor MyMod or mylib, and move foo() to another file, failure to update the location info in my code causes a fatal error for the module. With library requires, I can easily get stuck with comments that lie.


TGI says moo


In reply to Re^3: How's My Style Now? by TGI
in thread How's My Style Now? by Spenser

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.