up vote 90 down vote favorite
64
share [g+] share [fb]

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?

link
show 4 more comments
feedback

locked by Robert Harvey Sep 27 '11 at 4:17

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Robert Harvey Sep 27 '11 at 4:17

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

95 Answers

1 2 3 4

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
8  
I was going to say the same thing about assembler. But mostly it's the same thing, but to a slightly lesser degree for C. – Darron Nov 7 '08 at 18:54
23  
I agree... pointers in C was what first made me understand what variables really were. – Charles Bretana Nov 7 '08 at 19:29
3  
hmm... C, yes, but a lot of higher level concepts you simply can't learn in C (or you can, but painfully). C is a good start, but one should branch away from there. – Claudiu Nov 24 '08 at 2:14
1  
Interesting... I C... i mean "see" ... – theman_on_vista Dec 16 '08 at 18:38
38  
I would go as far as saying that if you don't know C, then to some extent you don't really know what you're doing as a programmer... Fortunately, I can say things like that in a comment in order to avoid the inevitable downvoting. ;-) – Charles Salvia Nov 14 '09 at 13:52
show 2 more comments
feedback

LISP, C, and Smalltalk.

I'd probably say Haskell if I were smarter.

LISP is beautiful for understanding symbolic processing. C is beautiful for understanding the von Neumann architecture as it was embodied in the 70s-90s. Smalltalk is beautiful for understanding OOP, which is the dominant model for discussing complex software systems.

link
show 3 more comments
feedback

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
show 5 more comments
feedback

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
5  
Yes -- Haskell, but I'd say it's nicer to get deep in three or four radically different languages. For example, Haskell, some Lisp, Prolog and C. In Haskell, I'd go at least into Monad transformers; in Lisp, I'd master macros and semantic metaprogramming tricks (semantic metaprogamming: using eval or synamically redefining symbols at execution time); in Prolog, getting used to metaprogramming. In C, getting comfortable with function pointers, types and type casts, all "not often used" operators like shift etc. Maybe Smalltalk would be nice too, but I haven't used it much. – Jay Nov 14 '09 at 13:56
feedback

Any new language

Whenever I started to learn and actually used a new language it was a huge boost to my understanding.

I didn't matter what language it was, even "bad" languages helped, because they tought me to appreciate the "better" features of others.

link
show 1 more comment
feedback

PHP. It taught me that quality isn't important. Nobody cares.

link
18  
+1 sad but true – finnw Feb 9 '10 at 0:25
2  
Pithy. +1. It taught me more marketing than programming though. – Noufal Ibrahim Apr 26 '10 at 17:30
feedback

Definitely C and C++. C because it forces you to work just a notch above asm. So you do best if you understand the language really well. And C++ because it is a good combination of high level features such as OOP and templates and C.

link
feedback

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
1  
Lots of C# stuff is available in C++, Objective-C, Ruby and almost every other language. – Brock Woolf Apr 2 '09 at 1:46
7  
Lol @ the Ruby toolbox fanbois coming out the woodwork – Pierreten Feb 6 '10 at 0:18
show 2 more comments
feedback

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
feedback

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
1  
Eiffel is a very underrated language when it comes to learning OOP! – Evan Teran Nov 7 '08 at 18:38
3  
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 '09 at 1:31
feedback

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

link
1  
-1 Turbo Pascal is not a language – GetFree May 2 '10 at 22:47
show 3 more comments
feedback

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
show 3 more comments
feedback

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

link
5  
ML is not object oriented. Ocaml is, but I think Standard ML is more likely what he used in undergraduate classes. – Amuck Nov 6 '09 at 18:50
show 1 more comment
feedback

Haskell

Couple of reasons:

  • It enabled me to think about some problems common in object oriented

    • Side effects
    • Type issues
    • Null pointers
  • it also gave me new insights into programming

    • Lambda's (anonymous functions)
    • Recursion
    • Complex data types
    • Lazy evalution
    • Inmutable data
    • List comprehensions

It also enabled me to better express my algorithms/math in shorter code using pattern matching. Many of these ideas are now becomming available in languages like ruby, c#,python and LINQ. If you learn haskell you can see where some of those ideas were inspired by.

link
feedback

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
feedback

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
feedback

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
7  
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
feedback

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
3  
+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 '09 at 1:37
show 1 more comment
feedback

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
feedback

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
feedback

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
show 2 more comments
feedback

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
feedback

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
feedback

It depends on what you are trying to learn. These is roughly the languages that helped me learn the following:

  • General programming - Pascal
  • Pointers and memory management - C
  • Object Oriented programming - Java
  • Reflection - ML
link
feedback

I started with Pascal, then - till now - I`m learning C++. Learn the basics of Assembler.

link
feedback

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
feedback

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
feedback

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
feedback

Although being in the Smalltalk business byself, I'd definitely say Lisp (or Scheme).

Follow the chapters of SICP, and you understand computing better - even if you already have many years of experience, you wil get new insights and the "AHA"-feeeling of a deeper understanding.

regards

link
feedback

Pascal, C++ and Java

Pascal gave me the basics of loops, procedures and if's. C++ gave me understanding of OOP. And Java teached me to chose architecture before I even start to write code.

link
feedback
1 2 3 4

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