Interesting replies - including aspects that I had not even considered.

I think that one lesson (for me, at least) is that I should not have expected "-MPDL" to be as innocuous as I had assumed.
For that level of innocuity, I think I should instead have used "-mPDL".

But I'm still a bit confused about perl's handling of "some_func" when both "main::some_func" and "CORE::some_func" exist.
In the one-liner I gave (that loads PDL), both "main::srand" and "CORE::srand" exist - and perl decides that "srand(3)" means "main::srand(3)".
But in this next one-liner (where both "main::sqrt" and "CORE::sqrt" exist) perl goes the other way - and decides that "sqrt(2)" means "CORE::sqrt(2)".
D:\>perl -wle "print sqrt(2);print main::sqrt(2); print CORE::sqrt(2); +sub sqrt { return sprintf('%.6g', $_[0] ** 0.5) }" 1.4142135623731 1.41421 1.4142135623731
Why the inconsistency ?
And why no warnings about the ambiguity of calling "some_func()" when both "main::some_func()" and "CORE::some_func()" exist ?

Cheers,
Rob

In reply to Re: PDL and srand puzzle by syphilis
in thread PDL and srand puzzle by syphilis

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.