Fortunately it's really just saving a few keystrokes; one-liners will survive without it. Also worth noting, perhaps: Object/Class-method calls do work. It's functions (non-methods) that trip up the error.

I find it very valuable and wish to retain the ability to use modules on the command line without having to refer to them twice and tinker with -M! As for the second point, you would think so, but check this out:

perl -ML -e 'print Data::Dumper->Dump([HTTP::Tiny->new->get(q(https:// +www.perlmonks.org))->{headers}])'

5.26

$VAR1 = {
          'server' => 'Apache/2.4.41',
          'etag' => '"f059-595f109c01e50"',
          'date' => 'Mon, 28 Oct 2019 04:38:47 GMT',
          'last-modified' => 'Mon, 28 Oct 2019 04:36:06 GMT',
          'content-length' => '61529',
          'accept-ranges' => 'bytes',
          'content-type' => 'text/html'
        };

5.28

$VAR1 = {
          'content-type' => 'text/plain',
          'content-length' => 110
        };


<Twilight Zone Music>

In reply to Re^2: Perl 28 broke L: How to fix? by Anonymous Monk
in thread Perl 28 broke L: How to fix? by Anonymous Monk

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.