Perl allows us to do crazy things. And i'm not sure that they all should be implemented in IDE, well, at least most people don't use them. For example, quote-like operations:

use 5.10.0; say q#7asdf#; say q{6asdf}; say q/5asdf/; say q(4asdf); say q<3asdf>; say q?2asdf?; say q _aasdfa_; #say q aasdfa; say q basdfb; say q casdfc; #say q dasdfd; say q easdfe; #say q fasdff; say q g1asdfg; say q hasdfh; say q iasdfi; say q jasdfj; say q kasdfk; say q lasdfl; say q masdfm; say q nasdfn; say q oasdfo; say q pasdfp; say q qasdfq; say q rasdfr; #say q sasdfs; say q tasdft; say q uasdfu; say q vasdfv; say q wasdfw; say q xasdfx; say q yasdfy; say q zasdfz; my $a = q ksadfk; $a =~ m leasdfl; $a =~ s lasdflfdasl;
All uncommented lines are valid. Of course, they are interesting to write some unreadable code, but you don't need IDE for that.

Where is the line of required minimum? And i'm not talking only about this example.

And by the way, if anyone knows, why 'a', 'd', 'f' and 's' are so special?


In reply to Perl power: where to draw the line? by hurricup
in thread Creating Perl5 plugin for Intellij IDEA (Camelcade) by hurricup

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.