vote up 12 vote down star
5

Each programming language comes with its concepts, best practices, libraries, tools, community, in one word: culture. Learning more than one programming language will make you a better programmer, for the more concepts you learn, the faster you will feel comfortable when the next language or technology will come.

Mine, so far, are C, some C++, and Python, and many times I read that it would be worth learning LISP, for "the profound enlightenment experience you will have when you finally get it" (quoting Eric Raymond).

My questions are: Which is the next one you would consider a good investment to learn? Of the many programming languages you have learnt and worked with, which ones do you consider to be an essential part of one's CS culture, and why?

EDIT. Further question: is there any language you would sincerely advise to avoid as a waste of time? (The famous, and questionable, slatings in this letter from Dijkstra come to my mind.)

flag

19 Answers

vote up 1 vote down

SQL and C#

link|flag
vote up 18 vote down

C. The world's most portable assembler. Speaking of which, at least one assembly language. And for bonus points, grow a justifiable opinion as to why you like it or not! (I like ARM: all conditional instructions, all the time)

link|flag
vote up 1 vote down

I would suggest Java and PL/SQL
But you have to ask yourself what would you like to do with your knowledge. :) Which kind of application do you want to write...

link|flag
vote up 6 vote down

For me it's:

  • C: I didn't really understand computers until I learned C well.
  • sh: I couldn't live without the ability to quickly automate small tasks.
  • Perl: Because sometimes shell just isn't enough.
  • SQL: Databases need to be accessed by everyone.
link|flag
+1 from me, but s/Perl/Python/ ;-) "Easy as Perl and powerful as C." – Dan Oct 16 '08 at 3:27
I have found Perl more useful to know because it is more prevalent. I do like Python better than Perl, but pretty much every place I have ever worked, I have been the only one to really 'know' Python, while Perl is everywhere I go, making it more useful IMO. – Chris Boran Oct 16 '08 at 3:32
vote up 2 vote down
  • Assembly (probably not x86) - Then you'll never forget what's really going on
  • SML or another functional language - It gives you a sense of perspective and reminds you that procedural/OOP isn't the only way. Helps with lateral thinking.
  • You've already got a good grounding in "everyday" languages
  • Ruby if you want something of more immediate use
link|flag
Because x86 assembly is a mess, filled with legacy instructions you should never use anymore and an opcode pattern developed for 8-bit machines and extended in more and more wasteful ways to 16 and 32 bits. Now the instructions need to be ordered to match a new predictive RISC-style (but not RISC). – Brian Oct 11 '08 at 4:57
Yes, but it's the old 8-bit stuff that will show you 'simply' how the machine does what it does. – Lance Roberts Oct 11 '08 at 6:15
Brian's right. It's actually the segmented memory model that makes it a pretty daft language to learn for learning purposes. Nothing wrong with 8-bit assembly, but 8-extended-to-16-extended-to-32-extended-to-64-bit? – Draemon Oct 14 '08 at 4:01
vote up 26 vote down

Regex.

It's a language in and of itself. So much better than using tons of indexof/substring functions to accomplish the same thing.

link|flag
Of course I agree. – Federico Ramponi Oct 11 '08 at 1:43
If only regex's could be commented :P – TraumaPony Oct 11 '08 at 6:57
Most languages support comments in regex. Although I usually find it easier to put the comments outside the regex pattern definition, the way you would comment anything else. – Kibbee Oct 11 '08 at 13:06
Unfortunately, it's not a very consistent language... regex(3) != Perl 5 != PCRE != Perl 6 != Python != C# != ... – ephemient Oct 11 '08 at 18:22
Yeah, the syntax may not be compatible, but most of the base features are similar across all flavours. I guess it's kind of like SQL in that regard. – Kibbee Oct 13 '08 at 16:04
show 1 more comment
vote up 16 vote down

Javascript would have to be the glue that holds the client side of the web together today.

A few years ago it was considered a toy language by many. However today the work at optimizing performance by Mozilla, Google and even Microsoft means people are seriously talking about it matching output from an unoptimized C compiler for performance in the next few years.

It's object oriented capabilities are far greater than expected also.

You ask about the "next" language to learn, right now I'd say Javascript, particularly when combined with a library such as JQuery, Prototype, Dojo, is an obvious choice.

By the way, regular expressions are a core part of Javascript too.

link|flag
vote up 5 vote down

Indispensable?

  • Perl for data analysis & being able to work with...

  • SQL for data storage

  • C++ for the Ultimate Programming Chainsaw Lingua Franca

  • x86 assembly.

Know those 4, and you are a good 80% of the way to being functional in any other language, barring the syntax/libraries/subtleties.

(It's a debatable list, but those encompass the functionalities of Java, C#, LISP, Ruby, shells, regexs, Javascript, and so forth)

link|flag
vote up 5 vote down

Lua or Tcl (or Lisp), to get an appreciation for what you can do in a language with minimal syntax. Smalltalk, because "everything is an object" is a pretty cool place to visit, as well.

link|flag
I'm told that Smalltalk is rather more radical than Python with respect to "everything is an object". Is it? – Federico Ramponi Oct 11 '08 at 1:43
It really is. From a programmer's standpoint, there's no way to tell that an integer is actually a primitive type, for example. There's a short comparison here: python.org/doc/essays/comparisons.html which misses a few other crucial differences. – Mark Bessey Oct 11 '08 at 1:46
One additional thought about Smalltalk: The object hierarchy is incredibly layered, in a way you don't see in most OO languages. So, integer derives from ordinal, which derives from number, which derives from value, which derives from comparable...or something like that. – Mark Bessey Oct 11 '08 at 1:50
vote up 1 vote down
  • C++ and C# for "regular" programming
  • SQL - no better for database queries
  • Regular expressions - no better for messing with strings, despite not being what's traditionally considered a programming language
  • OCaml or F# for "expanding your mind" and picking up a new programming "paradigm"
  • Lua, Ruby, and Python for dynamic languages
link|flag
vote up 3 vote down

For me, C++ is essential if I had to pick one language. At the low level it encapsulates the machine-level manipulation which is essential for understanding how the computer functions. At the middle level it allows both linear programming (C style) and OOP. At the high level, it has a lot of meta programming possibilities, enough to make almost anyone's head hurt. It also has the most code written for it, the most real-world apps written in it, the most library support, and probably the most money tied to apps written in it.

Other languages certainly emphasize other aspects of programming better, but if I had to pick one for someone to really understand, it would certainly be C++.

link|flag
vote up 0 vote down

C++ and x86 assembly language are the only indispensables. If I had to choose just one then definitely x86 assembly for me, because I have to do a lot of reverse engineering and when you don't have the source code there's nothing at all you can do unless you know assembly.

link|flag
vote up 7 vote down
  1. C and some assembly. I also think that non-x86 is better for this.
  2. a mainstream OO language: C++ or Java
  3. a nice scripting language: Lua if you appreciate design, Python if you want 'batteries included'
  4. LISP and/or Scheme
  5. a modern functional language, Haskell, Erlang

You can certainly get most insights with just 1,2 and 4; but in my case i tried several times to get any LISP, and failed miserably. after mastering Lua, it was really easy to get Scheme, that's why i put it in that order.

i still haven't find time for 5....

link|flag
vote up 2 vote down

C: as the granddaddy of most current languages. It's like learning Latin, even if you don't use it yourself, it helps you learn other languages.

Python or Ruby: provide great languages that force you to work in a non-C-like syntax.

Everyone should have some time with LISP to be forced to think about the fundamentals of the logic involved in programming.

Some kind of assembler, to force you to think through the details of how the machine actually works.

link|flag
vote up 1 vote down

Wow, talk about a subjective topic. Hmmm ... for my part I'm really glad I learned assembler (I started on 8080), an xBase dialect or two (in my case, dBase II, III, IV and Clipper), various BASIC dialects (too many to list), and Pascal. I've also got a place in my heart for VBScript and, drum-roll, SNOBOL-4.

In terms of string handling and pattern matching, there's nothing better than SNOBOL-4. It's concise and powerful. And I got my current job partly because I knew about it and had written some. It's pooh-poohed these days because it's not 'structured', but it really does deserve more press than it gets.

I've used lots of other languages, including COBOL, Fortran, Ada, Perl and Tcl, but am not as enamoured with them as with the aforementioned.

link|flag
SNOBOL - now there's a blast form the past. I remember it from college, but all I remember was that it handled strings much nicer than anything else (at the time), and it had a nifty name. – Michael Burr Oct 16 '08 at 5:27
vote up 0 vote down

The .NET Common Intermediary Language (CIL) as .NET languages are increasingly becoming wrappers for this shared base language. In that way it should be easier to grasp the more subtle details of any new .NET languages.

One way to go would be to read the popular CLR via C#.

link|flag
vote up 3 vote down

For me:

  • C, probably the most widely understood and portable, always a handy tool
  • Assembler, get some understanding of what your compiler/program actually do (I have even used some embedded in C on an RTOS project)
  • Python, great for testing an idea, writing test code or prototyping something (mostly due to allowing different styles of language)
  • C# (formerly VB), always nice to have a language which makes GUIs quick and easy to generate (at least simple ones anyway)
  • RegEx, I have to agree with Kibbee, besides when you release how many programs support it for searching in text files you really appreciate it
  • Lisp, I know most people hate functional programming, but as a hobby language I find writing functional code more natural then procedural or OO

If I had to pick just one though it would probably be Lisp, since you will see procedural and OO code everywhere, it is worth learning a language that makes you see the problem from another angle (same could even be said for assembly).

link|flag
vote up 1 vote down

In my experience, C/C++, SQL and the .Net Framework (mostly C#) (roughly in the order I actually learned them, and applied them commercially) have been the most valuable and/or indespensible.

C++ introduced me to many "modern" programming concepts such as object oriented design, abstraction, polymorphism, et al and also taught me a lot about how software can be very well designed and written as well as very poorly designed and written. I think this distinction is an especially important one in the commercial world, and underscored especially in C/C++ applications (memory leaks anyone?). Debugging, threading, tracing, exception management and profiling all came as standard side orders, not too mention cross platform work.

T-SQL introduced the essentials of database querying and in particular thinking in a relational fashion. Normalization is an important concept to learn when it comes to data storage, so picking up the fundamentals of proper querying had the inverse effect of teaching proper schema design.

The .Net Framework introduced me to garbage collection and memory management which I was unused to coming from the world of C/C++. The major benefit I think here is the introduction of real world rapid application development (thinking commercial implications) which I'd not experienced in other languages/platforms at that time. There are a lot of patterns from C/C++ which are reused in the Framework (and .Net development practices in general) so it was a logical leap forward.

link|flag
vote up 1 vote down

I would say you're not missing much, except maybe assembly language. I would learn both MIPS (so you see how machine architecture is done right) and x86 (so you see how it's "actually" done, and the kind of mess your compiler has to deal with when generating code).

There's an interesting meme on Planet.python.org making the rounds where people talk about what programming languages they learned and in what order: http://feeds.feedburner.com/~r/glyph/~3/421073961/programming-and-markup-languages-i.html

My personal list is here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.