vote up 26 vote down star
19

Which programming languages not only make you more proficient in the particular language your are learning, but also have a direct impact on the way you think and understand programming in general; therefore, making you a better programmer in other languages. Basically, which languages have the biggest impact on understanding the how and why of different programming concepts?

What about Scheme? I have heard good things about that.

I thought about taking the simplest of problems and implementing them in various languages. Has anyone done this?

flag
show 4 more comments

63 Answers

vote up 2 vote down

Probably the most "mind expanding" language I ever learned was Lisp. Once you really grok Lisp, you will never be afraid of recursion again. Thinking functionally can also help you to clarify your C++ some.

For learning software engineering in general, you can't beat Ada. The language won't let you get sloppy with types like C does, so you have to learn to think out your designs before you sit down and start coding. It also discourages pointer use much more than C++ does, so you learn all sorts of useful tricks for avoiding pointers (many of which are applicable in C++). Also, its general pickyness, while incredibly annoying at first, eventually trains you to be much more careful and precise when you code. That will help you in any language.

link|flag
vote up 1 vote down

Languages that I learned how to deliver product with (i.e. taught the discipline of engineering and process): Java, C#, SQL

Languages that deepened my understanding: Squeak/Smalltalk, Ruby, Python, Scheme/LISP/EMACS, Forth, Erlang, Objective-C

Languages I wish I'd never had to learn: MUMPS, BASIC, VB.NET, Perl, C++

Languages that feel good to use: Ruby, Python, C#, Objective-C

Languages that physically hurt to use or learn: Perl, Scheme/LISP/EMACS, Erlang, C++

Regardless of what languages you decide to learn, make sure you understand these concepts:

  1. actual object oriented programming (vs. class oriented programming a la C++) - Squeak/Smalltalk, Ruby, Objective C
  2. meta-programming - Ruby or Python
  3. message passing vs function/method calls - Ruby, Erlang or Objective-C
  4. non-synchronized parallel programming (i.e. without semaphores) - Erlang or Python
link|flag
vote up 1 vote down

I'd echo the support for C and assembly language as great learning tools. I feel one should learn as much assembly as is necessary to really understand how the computer works, and then move on to using C exclusively for a while in order to get some system-level skills in place.

To contribute a language I didn't see on the list:

Forth is an excellent language for learning about functional decomposition. When it comes to mind-boggling programming approaches, Forth was Haskell back when Haskell was just a twinkle in a math geek's eye.

I highly recommend taking your new assembly language skills and using it to implement a Forth compiler. They're easy to write and it's a real eye-opener to the nature of computer programming and "thinking outside the box" or normal programming paradigms.

However, your chances of using Forth to make money are pretty low unless you're into embedded programming. So do it for the thrill of the experience. ;)

link|flag
vote up 1 vote down

Ocaml in my case, but any robust functional language can be substituted. Once you understand functions that return functions and apply functions to functions recursively by passing themselves into these functions, then classes, pointers and templates start sounding much simpler. :)

link|flag
vote up 3 vote down

I think Pascal is great for learning. Its syntax is easy, it's basically English.

C is very good too but it's sometimes very hard for the ones who doesn't have any idea of what programing is.

I learned OOP with Java. For me it was very good. Java forces you to program in Oriented Object Paradigm. I don't know the other OOP languages you said (Smalltalk, Eifeil, etc) I'll search for them.

link|flag
vote up 1 vote down

C was a revelation for me because before that all I'd seen was BASIC. C seemed to be designed for a working software developer; the ++ operator alone was a sure sign that someone that writes code for a living designed the language. It really made me think of software development in a whole new way.

C++ was also a paradigm shift because when used right, classes and OO are a better way of developing software. Of course the converse is also true--it can be damned hard to debug C++ code exactly because of all the hidden features. As another developer said to me--"With C nothing is hidden".

link|flag
vote up 3 vote down

Pascal and C++ were the two that did the most for me. Pascal gave me the abilities to grasp most basic concepts quite easily and early, then switching to C++ really took me to the level of becoming proficient at programming.

For other languages, Java, assembly, and perl were useful in demonstrating the simplicity of implementing the same concepts in different ways, but I rarely touch those any more. Of those three, I found assembly the most difficult to learn from as a lot of instructions felt backwards and switching from C++ or Java to assembly then back really made my head hurt trying to remember just how things were supposed to work.

link|flag
vote up 1 vote down

Not because of the language itself, more because of the IDE, but MATLAB did more for my programming skills than anything else. It has a built-in profiler, which was enlightening for me. It was also the first scripted language I used, and the ability to try stuff out on a command line and then save the code to a file is very good for exploring new programming concepts. Factor looks like it's got many of the same advantage of MATLAB, and more functionality and it's free, so I'm considering switching to that.

Python was fun, but didn't make me a better programmer, and I'll always have a soft spot for C, my first language.

Disclaimer: I am not a programmer, per se, but rather a researcher who does a lot of programming.

link|flag
vote up 1 vote down

C and Scheme.

C gave me a better understanding of what was going on in higher level languages. When you understand how memory allocation works, you avoid stupid efficiency mistakes like repeatedly concatenating immutable strings.

Scheme is an amazing first class high level language. It's syntax is clean and simple. Because recursion is essential to almost any program you write in the language, it forces you to think in a different way than procedural programming languages like C++ and Java. This in turn helps you write more efficient code in those languages. This is not a language just for beginning programmers. Every programmer should be able to write concise Scheme code.

For reference, The C Programming Language by K&R and Structure and Interpretation of Computer Programs by Abelson and Sussman are essential programming books which use these languages.

For the second part of your question, I'm not sure what the benefit of writing a lot of programs in different languages would be other than showing you how similar programming concepts are across most languages.

link|flag
vote up 1 vote down
  • Assembly and C to understand general operation of a computer, those were the languages I started with.
  • LISP helped understanding how to use Emacs effectively and transformed it from a disliked to a regularly used editor for me.
  • Eiffel helped me a lot to understand static typed object-oriented programming languages like C++ and Java
  • I learned a lot about Refactoring, Patterns and testing on Java and also learned to understand that some techniques are necessary because of the concept (or limitations) of the language
  • Squeak and Ruby did the same for dynamic OOP languages
  • Erlang helped me to rediscover my love for functional programming because of its simplicity and to understand concurrency and recovery in a distributed environment better
  • Haskell and Miranda for functional programming
  • Javascript is one of the languages that I feel that it can teach me a lot because it is somewhere between OOP and functional programming
  • Scala and C++ helped me see where the limits of complexity for a programming language are
link|flag
vote up 3 vote down

Although I may have learned programming with Apple Basic, I didn't really understand procedures and the like until I learned Pascal (MPW Pascal in this case). Pascal was a good foundation for learning programming, but I didn't really understand what was going on until I learned C.

C (later C++) is what really introduced me to how programming works. Learning memory management made me more careful about what memory I use and where. It's also where I started understanding data structures better, and learning how data structures control how data is laid out in memory.

Java is what taught me about real Object-Oriented principles and how Software Engineering works. It showed me how code reuse would work in a (nearly) perfect world. Java showed me that libraries can be more than just useful subroutines, they can be integral parts of your program if you use them carefully.

Later, I learned Scheme and Prolog, and they expanded my boundaries on what I thought programming was. They showed me that there's more to programming than just objects and procedures. They showed me (Scheme mostly) that programming can be elegant and dynamic, that it's not just about writing a method and running it.

These days I'm looking at Eiffel and some of the more esoteric languages like Shakespeare and Whitespace. It's always interesting to see what other people consider to be programming. If anything, you might learn something about programming you never knew.

link|flag
vote up 11 vote down

Ruby (and Rails) showed me how clean and DRY code can really be. It forced me to take my C#/C++ to the next level, building highly reusable classes.

link|flag
show 2 more comments
vote up 9 vote down

Turbo Pascal is my favorite programming language to learn basics. Its syntax is very clean, has pointers and very easy to start.

link|flag
show 1 more comment
vote up 7 vote down

I'd say it wasn't until Python that I really started getting OOP, unit testing, design patterns, etc. Having a dynamic environment I could use to tinker with things was tremendously helpful. With a compiled language, just making random changes until the code compiles is too tempting to pass up sometimes.

link|flag
vote up 5 vote down

I find that anything that shifts my thinking helps. I am a C# developer so working with Ruby helped get me out of one way of thinking.

JavaScript is also a good one. I'm not talking about showing alerts on a web page, but really digging deep into JavaScript helped. It's been referred to as the most misunderstood language, but if you start to understand the strengths (and weaknesses) I think it makes a huge difference in the way you look at writing code.

Just my 2 cents.

link|flag
2  
I was pretty shocked when I first looked closely at JavaScript and realized that the toy language included in browsers was full-blown object-oriented, forced me to think about objects in a new way (prototype vs class-based), and really cemented my understanding of closures. – Nicholas Piasecki Nov 24 '08 at 4:35
vote up 2 vote down

Assembly and C are strong, if only to teach you how memory management works.

But quite honestly, the single language I've learned which taught me the most is JavaScript. On the surface, JavaScript looks like a cheap, throwaway language, but really It's a functional language masquerading as an object oriented language, masquerading as a Procedural language. You can implement stuff in it at all levels without understanding the next higher level, but then once you've mastered the level you're at, you find there's more to learn at the next level up.

Of course most implementations of JavaScript are annoyingly incomplete and buggy, but the language itself is actually pretty beautiful.

C#, Java and ActionScript 3 are good for learning OO principles, but honestly, JavaScript has taught me the most new ways to think about code and about software development.

link|flag
show 2 more comments
vote up 1 vote down

Prolog helped me see the limitations of logic in programming. IOW, there's a lot of human imagination and creativity that has to go into a useful program.

link|flag
vote up 4 vote down

Nobody's mentioned Tcl yet. That was a real eye-opener for me. I got into Tcl because of Expect, but I grew to appreciate it later for the insight into just how minimal the syntax of a language can be, and still be useful. The extensibility of it was a revelation at the time, too.

I had the same experience with Tcl that many others had with Lisp, though I felt at the time like Tcl was more approachable than Lisp...

link|flag
1  
+1 for a tcl answer. Also, tcl is more lisp than most are willing to admint. First a big part of the language is [op [op [op arg ]]] and second, in tcl everything is a string (and code is a string) – TokenMacGuy Apr 2 at 1:37
vote up 27 vote down

Definitely Haskell. I don't know it extremely well (yet), but it's definitely made me a better programmer. It's helped me think through abstract algorithms better, and encouraged me to keep ideas like referential transparency, etc., in mind, even when I'm not using a functional language.

link|flag
show 1 more comment
vote up 3 vote down

Not as general as your question, but learning Erlang with this excellent book, helped me understand and make effective multi-threaded code.

link|flag
vote up 7 vote down

Scheme, assembly and Pascal would be my main 3.

Pascal was the first language where I had a few new elements added to my list of programming concepts: Explicitly giving variables a type, using pointers, and removing line numbers from my code as before I had developed mostly in Basic where types were limited to numbers, strings, and arrays.

Assembly in my case was a Commodore PET but it was still another change in how to write a program into a computer as you had to allocate space for things, handle branching instead of a simple if, and my favorite procedure to write: The waste time routine, which incremented counters over and over again so that when a user typed there was some control over how far the little ship he controlled would move.

Scheme was the first functional programming language I was introduced to as well as having a very different syntax from previous languages that took a little while to get used to as well as the idea of a list being quite different than my previous languages.

link|flag
vote up 37 vote down

As much as I'll be criticized for it, if you really want the zen to come to you, you're going to have to get dirty in an assembly language. As I write code, in the back of my mind there seems to be a little optimizing compiler going all the time that keeps me aware of what I'm doing. If I don't understand how the compiler of a high-level language is going to treat my code, its time to examine what I'm doing - either learn more about that language, or rethink whether I'm using it properly.

There's no substitute for really understanding what you're up to, no matter what language you're hacking with. If your compiler is truly smarter than you are, don't expect to be doing the best code you could be.

link|flag
show 1 more comment
vote up 7 vote down

C was the first language I learned, and I think it's one of the best languages to learn first. Schools are starting to teach Java first now, which I think is a mistake, but that's another topic...

Although I say C because it happened to be the first language I learned, I honestly believe that if you can be proficient in C or C++, you can learn pretty much any language from there with not many problems..

link|flag
vote up 5 vote down

I'd have to say Smalltalk because it gives you an exceptional portal into object oriented design and thinking. At the time I learned it I was using primarily C++ so reflection and run time hierarchy changes were something I was not used to (though Java supports them, to a degree).

These days I also think that people who program in Java or .NET and have never learned C/C++ should actually learn those langauges to understand how things work in the background. Understanding the runtime is important.

link|flag
vote up 9 vote down

Assembly Language. Learning how the machine moves and interprets data really makes clear some of the choices high-level language designers have to make. Plus, it gives you a much greater appreciation for being able to work in higher level languages.

Also, check out Charles Petzold's Code: The Hidden Language of Computer Hardware and Software for a good look at how low-level components are put together to create a complicated programmable machine.

Finally, learning Scheme, reading SICP, and watching the accompanying video lectures has definitely been enlightening for me. It's really having an impact on how I think when I'm programming.

link|flag
show 3 more comments
vote up 4 vote down

Assembler, I used to work with embedded systems using 6502 and Z80 CPUs. High level languages are much nicer and they are all I work in today, but with Assembler you had to really understand how computers worked.

link|flag
vote up 10 vote down

chronologically:

Assembler (6502-Z80), C, C++, Lua, Scheme

in fact, i tried a couple of times to learn Lisp and/or Scheme, but i just didn't grok it. it wasn't until after really understanding Lua, that i could tackle Scheme.

link|flag
vote up 65 vote down

I think C still has the most impact on my day to day programming. I spent ~2.5 years doing mostly C work at school and for hobby projects. While I don't think bare bones C is the greatest product development language, it's an incredibly educational one. C gives you practically nothing. Anything you want you have to build yourself.

I feel like this gives me a distinct advantage these days. The knowledge of how the underlying system works (after all, all languages end up talking to the OS in one form or another) it allows me to reason about what my high level language is likely doing under the hood. That's simplied more problems than I can remember.

link|flag
6  
I agree... pointers in C was what first made me understand what variables really were. – Charles Bretana Nov 7 '08 at 19:29
show 5 more comments
vote up 6 vote down

ML and Smalltalk. Though I only ever touched them in an undergrad programming languages course.

link|flag
1  
ML is not object oriented. Ocaml is, but I think Standard ML is more likely what he used in undergraduate classes. – Amuck Nov 6 at 18:50
show 1 more comment
vote up 11 vote down

I found Eiffel to teach me the most - I got object oriented programming down, design by contract, error handling, program flow, etc. Granted it was not the first programming language I learned, but the rigidity of the language meant that I had to follow all the rules, therefore the concepts became completely ingrained in me.

link|flag
1  
Eiffel is a very underrated language when it comes to learning OOP! – Evan Teran Nov 7 '08 at 18:38
2  
And Bertrand Meyer's book Object Oriented Software Construction is hands down the book about, well, Object Oriented Software Construction, independent of the particular language you use and despite the fact that the old first edition was released in 1988, long before most OO languages in use today – Jörg W Mittag Mar 14 at 1:31

Your Answer

Get an OpenID
or

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