A lot of what you're referencing here is more specific to compiled languages. Perl is not a compiled language, but rather an interpreted one (although I believe there are some programs to compile perl code).

Compiled: The file is not human-readable (binary). It is executable in its own right as an EXE without needing other programs, or may be included in other programs as a library/DLL/etc

Interpreted: The language is generally human-readable (in the sense that it's not binary). When run, the interpreter (say perl.exe) reads the code through processes it. The code cannot run without the interpreter program.

Libs: In perl I suppose these would be the perlmodules. They're really quite similar to plain 'ol Perl code but with a little extra (and are still human-readable).

Functions/Subroutines: Functions in perl work similarly to other languages. They can be called with variables to do some work and/or return a result. It saves you from replicating the same code constantly or using nasty loop statements.

You're talking a lot about C here, but Perl is not C - though at times the syntax is similar. Perhaps this answers some of your questions though.

In reply to Re: Newbie programming questions by darkphorm
in thread Newbie programming questions by newbio

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.