I hold the following rules assertions:

  1. module writing is about avoiding namespace clashing
  2. the proper use of globals in modules is the same as perl does with builtins like map and grep - aliasing them
  3. having $_ blown away is learning the hard way how to use globals properly: not to trust them once you give away control over them
  4. $_ isn't really a global, but a default - think scratchpad
  5. for really real global values everywhere, there is ${^_My_Real_Global_Var} - the "^_x" thingy (see perlvar at the end)

So it's all about intent - if you inadvertently overwrite $_ or inadvertently get your $_ overwritten, it's fault in either way. If you do it deliberately, you'll do it (at best) for educational purposes - "hey, I wiped our scratchpad, isn't that nice? fix your code" :-)

Anyways, I personally think $_ and friends should be seen as belonging to no namespace but the CORE, and closer to the default main namespace.

--shmem

<update> - added curlies for My_Real_Global_Var - thanks Hue-Bond </update>

_($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                              /\_¯/(q    /
----------------------------  \__(m.====·.(_("always off the crowd"))."·
");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}

In reply to Re^6: cpan install($_) doesn't work in loop, but normal lexical var does by shmem
in thread cpan install($_) doesn't work in loop, but normal lexical var does by tphyahoo

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.