vote up 6 vote down star
2

I've decided, for educational purposes, I want to learn a new language every 2 years or so. Which language should I learn first? Why?

I'm proficient with C, C# and Java. Other than that, I really haven't done much with any other languages.

Thanks!

Edit: Thanks to all of those that recommended functional languages. Making the mental switch to a functional language seems hard. How did you overcome your instinct to keep doing things in a procedural manner?

flag

25 Answers

vote up 8 vote down check

I'd reccomend F# or Scala. You can leverage your existing .NET / Java know how and bridge into functional programming. Ruby and Python are great, but they are their own little islands when it comes to interoperating with existing libraries. (They do however, have their own rich set of libraries.)

link|flag
Ruby and Python are actually great for glue. RJB[1], for example, gives a very capable interface to Java from Ruby, Swig is a great way to call C, and both can call the shell easily. F# and Scala are beautiful, but sometimes ugly glue is best. [1]: rjb.rubyforge.org – Joseph Holsten Sep 18 '08 at 10:58
Given the both Ruby and Python have JVM implementations (which can interoperate with Java code), your remark about them being "their own little islands when it comes to interoperating with existing libraries" is untrue IMO – Don Jan 7 '09 at 15:13
I also thought that at least python has it's own .NET implementation over on codeplex, doesnt it? – RCIX Jun 12 at 2:24
@RCIX, IronPython: codeplex.com/Wiki/View.aspx?ProjectName=IronPython/… – Andreas Grech Jun 30 at 22:40
vote up 3 vote down

Try your hand at a scripting language: Ruby or Python

Once you have those down try to wrap your head around Lisp, Scheme, or Haskell

link|flag
vote up 5 vote down

Ruby
Try it in your browser right now: http://tryruby.hobix.com/

link|flag
vote up 1 vote down

Python or Ruby.

There are interesting jobs (not too many, but interesting) using those languages.

They offer good online resources, good communities.

You don't need to spend money on tools, IDEs, etc.

You'll learn to do things differently. They are great springboards to other languages.

link|flag
vote up 0 vote down

I would say python would be a natural extension, introducing you to new concepts while staying within the comfort of the program structures you know. If you really want to stretch yourself, I would learn lisp (for learning the advantages of being able to really build things at runtime) or erlang. Also, if you don't know SQL or regular expressions, I would learn these, as they are of importance across almost all languages.

link|flag
vote up 3 vote down

In what direction you should look at depends somewhat on what your aim is. If it's purely for the sake of being a better and more well rounded programmer I'd personally go for a different kind of language than procedural languages like c, c# and Java. In school I was exposed to two function programming languages (Haskell and Erlang) which I feel has bettered my understanding and feel for recursion and list processing. Recursion is something (taking out my generalization hat) a lot of graduates today have problems with implementing correctly.

Going another direction is Smalltalk. It's a purely object oriented programming language with message passing and blocks and tons of other nifty features.

link|flag
vote up 8 vote down

I would say the first language you should learn is Haskell.

It is very very functional, so it will give you a whole new perspective on programming. You may not want to use it for a lot, but it will be a big eye opener. As a note, you can write code without a single loop or if conditional! They have alternative syntax for such constructs... such as guards for conditionals (a different version of the function is executed based on the guards, so this can very cleanly replace ifs), and recursion for loops (with something called a tail recursion optimization to not destroy the stack if you use tail recursion).

As an alternative to Haskell, you could try Lisp or Scheme, which are also functional, but you will be stuck in parenthesis hell (you will know what I mean once you see some examples and maybe try it out a while).

After that, I would very strongly recommend Ruby. It has a lot of functional influence, and is very purely object oriented. It is just plain fun to use, and it has a lot of more advanced/high level/dynamic features you won't find in Java, C, or C# (though C# is currently pushing the bounds of a statically typed language).

link|flag
vote up 1 vote down

Another vote for Ruby. Or for something completely different, try Erlang

link|flag
vote up 7 vote down

Looking at the languages your proficient with, I'd suggest you try a programming language that has a completely different world view than C, C#, and Java. As many of the other answers, I'd suggest you try a dynamic language such as Python, Perl, or Ruby. Whichever seems the most interesting to you.

After that, you could try learning Lisp, Smalltalk, or any of the other languages that have had an influence on many other languages commonly used today.

Eiffel is also an interesting language for its design by contract notion.

There are plenty of languages out there to try, but if you want to try something new go with something that forces you to rethink your programming style.

link|flag
vote up 0 vote down

@Tom

Twitter's problems stem from an architecture problem and whilst Ruby isn't lightening fast it isn't directly to blame, if at all:

http://dev.twitter.com/2008/05/twittering-about-architecture.html

http://www.25hoursaday.com/weblog/2008/05/23/SomeThoughtsOnTwittersAvailabilityProblems.aspx

http://www.25hoursaday.com/weblog/2008/05/26/SomeThoughtsOnSingleInstanceStorageAndTwitter.aspx

link|flag
vote up 2 vote down

I think that everyone should know a variety of types of languages. I'm not the most experienced person here, but once I learned C++, I learned Java quickly. Once I learned Ruby, I started to learn Python and picked it up fairly quickly...

  • Aspect Oriented: AspectJ (I have not learned it, but several have recommend it)
  • Procedural: C
  • Object-Oriented: C++, Java, Eiffel
  • Scripting: Ruby, Python

And of course, I recommend learning about SQL and XML, as databases and XML documents are common. And if you are working on a web project, you should at least understand HTML, CSS, JavaScript, etc.

link|flag
vote up 9 vote down

Javascript. It is used on nearly every web page, and it is seriously cooler than you'd expect. It has features that don't exist in C, C#, or Java, and will help you think about problems in a new way as well as being extremely useful.

link|flag
vote up 0 vote down

Considering that the languages you've mentioned are ultimately the same, I'd suggest going at a different directions and trying out a completely different programming language, one that will feel new to you. I see 3 different directions:

  • Learn a dynamic language (python, ruby) as they're really handy, fun and useful.
  • Learn a functional programming language (Haskell, Erlang, etc).
  • Learn Lisp (the ultimate bender).
link|flag
vote up 0 vote down

How about something a bit less traditional than a formal programming language?

  • Maybe become proficient in bash or PowerShell?
  • What about Domain Specific Languages such as Regular Expressions or LINQ?
link|flag
vote up 3 vote down

Try Boo. It's a .NET language so you can leverage your existing .NET Library knowlege and just concentrate on learning the new syntax. Given your previous experience I'd highly recommend a functional language too. I had a look at F# but didn't get into it. I've played with Scheme which is fun.

link|flag
vote up 0 vote down

The best advice I was given is : Learn which ever language is commanding the greatest salaries in your area.

link|flag
vote up 4 vote down

I suggest you to read this article - Tour De Babel from Steve Yegge

C

You just have to know C. Why? Because for all practical purposes, every computer in the world you'll ever use is a von Neumann machine, and C is a lightweight, expressive syntax for the von Neumann machine's capabilities

C++

C++ is dumb, and you can't write smart systems in a dumb language. Languages shape the world. Dumb languages make for dumb worlds.

Java

Java is simultaneously the best and the worst thing that has happened to computing in the past 10 years.

link|flag
vote up 2 vote down

Here are a few more suggestions.

SQL - If you don't know it you should.

And if you don't want to learn a new language how about these suggestions:

  • If your comfort zone is writing desktop apps build a web app.
  • If your comfort zone is writing web apps build a desktop app.
  • Write a IM application.
  • Write a simple game with AI. Noughts and crosses maybe?
  • Write a firefox extenstion.
  • Write a DSL.

These suggestions will force you to think and learn slightly differently where as just learning another language will just give you the ability to do exactly what you could do but in a different language.

link|flag
vote up 0 vote down

I would say Scheme, Smalltalk, Ruby, Haskell, Java, C and Assembler.

  • Scheme: macros, continuations, image based, meta-programming.
  • Smalltalk: object-oriented, image based, meta-programming.
  • Ruby: scripting, object-orientation, meta-programming.
  • Haskell: laziness, type theory, monads, functional purity
  • Java: C-like, OO language.
  • C: OS-programming
  • Assembler: To know what all the abstractions actually mean.
link|flag
vote up 0 vote down

Pike. It's like dynamic C++, which you might find refreshing.

I also find it mildly neat that you can use / like:

string example = "zip, zam, bam";
array(string) list = example / ",";

to split/divide a string.

link|flag
vote up 1 vote down

I recommend Erlang. It's a great way to start thinking about techniques for working in a massively parallel system without having to bite off the whole functional programming enchilada.

link|flag
vote up 1 vote down

To become a master programmer, you need to learn lots of different approaches. Trying out greatly different languages is a very good way to do that. But don't just write C in the other languages, learn how to use each one's advantages!

Try APL! I really recommend learning this weird language -- but it's more for fun than serious applications. It's especially fun trying not to use for loops and writing seriously compact code.

link|flag
vote up 2 vote down

Prolog might be be a good one for getting away from your procedural[imperative] instincts.

link|flag
vote up 6 vote down

JavaScript;

Most people nowadays rely a lot on server-side development, for basically almost anything that happens on a web page...even trivial tasks like table-sorting; tasks that can be accomplished (much faster) on the client's computer. And well you can't really blame them since most languages thought at schools, such as .net and java, revolve almost completely on server-side processing.

You may have the misconception that JavaScript is just about image swapping and rollovers, and if you do, you are mistaken. The language has a lot more to offer than such simple tasks.

JavaScript is a dynamically typed, class-less object oriented language...meaning that types are associated with values, not variables...and everything in JavaScript revolves around objects, even functions. You can even simulate OO concepts, such as inheritance (and you'll be surprised that there are a couple of different ways to accomplish such as well)

Although I do recommend reading blogs and articles people write on the web, I definitely recommend even more reading a book (books, actually) from cover to cover to really learn and grasp the language. (the fun really starts when you will learn stuff such as closures and other related language techniques)

Two must-read books you will need to check out are:

  1. David Flanagan's JavaScript: The Definitive Guide
  2. Douglas Crockford's JavaScript: The Good Parts

Flanagan's book will cover every aspect of JavaScript and will talk and explain (in great detail) about the whole language...and Crockford's book talks about the good parts and best practices in JavaScript (and also the bad ones...the pitfalls to avoid)

By reading those two books (in order...Crockford's book is a bit advanced for novices) you will not only grasp the language but embrace it like you've never experienced any language before!

It doesn't mean that by learning and using JavaScript you will now do everything on the client's computer, but having the language in your arsenal of languages you can now balance between client-side and server-side processing

Hope this post has given you some insight on why you should learn JavaScript as your next programming language.

--Thank you for taking the time to actually read this lengthy post. ( I know most don't ;-) )

link|flag
vote up 1 vote down

i'd recommend going for Scala due to your Java background.

Or go with Clojure (a new dialect of Lisp).

link|flag

Your Answer

Get an OpenID
or

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