UPDATE :
1) this post is supposed to be an answer to the main thread.
(Sorry herveus, I goofed when answering...)
2) Thanx dragonchild for pointing out an error (when I switch from hash to array, I should also remove 'keys' ;-)
IMHO you can/should learn from every language.
(Even with COBOL I learnt a lot about file IO, Indexed files, EBCDIC prob...)

I believe that each new language may give you another way to see (and thus solve) problems...
Pascal taught procedural programming, and OO basic programming (it was an object pascal).
C taught me to use memory and loops eficiently and gave me a first contact with "Unix semantic".
<UPDATE>>
Smalltalk influenced the coding of a lot of experienced coders here...
Ruby influenced the coding of another experienced coder here...
</UPDATE>>
Prolog taught me to think in term of predicate, recursivity and backtracking.
Lisp taught list processing, but I didn't understand/like them util I've found Perl...
(Btw in my mind Lisp will always be more about lambda calculus than about list)

I really discovered list with Perl (Lovely map and grep...).
I hardly imagine using other structure as efficient and evolutive as hashes...
the for my $var (@mytab) definitly took over my old C for(my $i=0;$i<=$#mydata;$i++)
It's not only a matter of syntax, it's a way to 'see' your structure, to 'think' your interface
(to be always evolutive, using hashes..) and your looping differently...

So, to be short a new language will often bring you new solutions/point of view
(in the 'old time' people were saying 'paradigm' ;-)
which can only enhance your ability to solve problem cleanly and efficiently (ie: enhance your programming skill)

"Only Bad Coders Code Badly In Perl" (OBC2BIP)

In reply to Re: Re: Does Knowing Perl Help or Hinder Learning another Language by arhuman
in thread Does Knowing Perl Help or Hinder Learning another Language by dru145

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.