User scalability A rank beginner can start in with perl with something like

#!/usr/bin/perl @files = `ls`; for (@files) { `cp $_ backupdir`; } # yes, OK, hideous example, beyond hideous # do you recall one of your early Perl efforts that was # just a bunch of system calls?

using backtick or system calls to do with shell what is still a mystery in Perl. As Perl is learned the syscalls disappear.

Quickies Whether it's a command line one off or a "tpl" test case creating a small test to check your concept is just brain dead simple.

Language Scalability Perl is appropriate for a wide range of projects. It's difficult to run into a limitation in Perl that will force you to learn another language to get the problem solved. Thus you'll spend more time improving your core language skill.

CPAN Wheels pre-invented in almost every imaginable size.

TIMTOWTDI Personal neural nets differ. Perl allows one to create a code construct that closely matches the mental contruct. This is part of what makes the user scalability possible.

Well, at least that's what works for me.

Be Appropriate && Follow Your Curiosity

In reply to Re: What's so unique about Perl? by mikeraz
in thread What's so unique about Perl? by Ido

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.