if programming languages interest you, you will probably enjoy reading Lambda the Ultimate on a regular basis. intelligent, well-reasoned language comparisons are common there.

personally, i've coded in: C, C++, perl, java, javascript, ML, haskell, XSLT, rexx, SQL, bash, python and several flavors of assembly (MIPS, x86, and Z-80).

i find perl to be the most pleasant to use for the widest variety of tasks. plenty of power without having to do lots of busy work type stuff (like memory management in C/C++ or the annoying type system in java) without forcing me into one particular programming style (functional, OO, procedural, etc). C, assembly, javascript, and SQL each have domains where they are the only option available so you're basically stuck with them. learning functional languages like haskell and ML did wonders for my ability to reason about programs. actually using them though, i found too many things that should have been simple but weren't (eg, basic IO and text processing). python is pretty nice too; python with TKinter makes GUI programming quite painless.

it sounds like you already have a good grasp of functional and procedural programming. maybe a good next step for you would be to learn some assembly. becoming familiar with exactly how things work at that low level can't hurt. you probably won't actually do much assembly programming in your career but the understanding it creates is priceless.

anders pearson


In reply to Re: Other languages besides perl by thraxil
in thread Other languages besides perl by dimmesdale

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.