vote up 26 vote down star
21

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

64 Answers

1 2 3 next
vote up 0 vote down

Rebol is first candidate for that as you can use its unique Domain Specific Language feature to emulate other languages see

http://github.com/hostilefork/rubol http://reboltutorial.com/blog/scala-val-keyword/ http://reboltutorial.com/blog/scala-var-keyword/

or if you want to understand functional programming like Map Reduce http://reboltutorial.com/blog/map-reduce-functions-in-rebol-towards-massive-parallel-functional-programming-part-i/

link|flag
vote up 1 vote down

Intel x86 Assembler

link|flag
vote up 1 vote down

Assembly language, Forth, and APL.

Knowing assembly language forces you to know how the computer "thinks." It also lets you look at the output of compilers.

Forth and APL took my brain down two very different tortuous paths that probably informed the last 30 years of my programming life.

link|flag
vote up 1 vote down

Visual Basic 5/6

Hold on! Hear me out. I coded some of that stuff in my first gig out of Uni. I'd grown up coding Sinclair ZX81 and AppleSoft BASIC, learned some C, Pascal, Assembly, SQL, Perl and Java, and bash scripting in University.

But, after graduating Uni, I spent the next two years coding server-side (!) VB5 and VB6 because the founder thought that VB was the greatest thing since sliced bread. It was there that I learned that not all languages are created equal, that some languages and language 'features' are undesirable, and that I, as a software development professional, needed to be informed, selective and opinionated about the tools I used to complete the task.

Gawds...awful flashback there...trying to implement Interfaces in VB6...

link|flag
vote up 1 vote down

I'm really happy for you folks and I'mma let you finish but switching from BASIC/Z80 assembly to Turbo Pascal for me has been the greatest paradigm shift of all time, all time!

I was introduced to a huge array of features like structured programming, object oriented programming, a world without "goto", a very flexible type system, compiled code, concept of libraries. I won't even go into the benefits of the IDE concept.

link|flag
vote up 3 vote down

Any other language

Whenever I started to learn and actually use 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|flag
vote up 1 vote down

My short answer is: the second language I learned.

I started out with C++, learned it and did some projects. I always felt that I would like to understand more. It was when I decided to also learn Python that some wisdom found me. The reason is that I approached the language with the "how does this language differ from c++" mindset. Looking up several aspects of what Python was doing and how it did it boosted my understanding of how languages worked at large.

link|flag
vote up 1 vote down

Ruby's blocks helped me become a better programmer. They gave me a better understanding of callback programming.

link|flag
vote up 1 vote down
  • My first programming was on a TI-59 programmable calculator. This taught me about conditionals, loops and register management.

  • My first programming language was BASIC. This taught me about structuring programs (just a little) to make them readable and maintainable.

  • Pascal gave me a lot of insights into strong typing. Pascal was the first language where I could write code that ran correctly the first time, after I got it past the compiler.

  • Assembly language taught me about memory allocation and performance. It was a good prerequisite for C.

  • I learned OO programming from Delphi.

  • I learned design patterns with Java.

  • I learned functional programming with Ruby. Much more so now, with Clojure.

link|flag
vote up 1 vote down

It may sound funny, but... The first one was Pascal -- because I had learnt BASIC before, and structured programing was, well, painful (I had to think in a totally different way). Later, it was Prolog, because I had to give up the kind of low-level concerns I had before when I was programming. Later Common Lisp and Haskell made a huge difference also. I did learn other languages, but these were the most important to me.

link|flag
vote up 1 vote down

Well when i started programming i used C# it was really challenging but i learned lot from it then when i went to college i did lot of C which made me understand lot of concepts and helped me appreciate C# more

link|flag
vote up 1 vote down

For me it has to be PHP, mainly because it's the first one I became familiar with. I'm by no stretch of the imagination a "natural programmer" - I can do it with the books and examples infront of me, but in many ways I'm much more comfortable with the design side of the web etc. PHP's all around you on the web, and there are many examples of PHP on the web - tutorials, 'how-tos', etc., as well as applications written in PHP.

I first became familiar with PHP through running web discussion forums (initially PHPBB and later SMF), where I could see from my knowledge of what the forum was doing, what the PHP behind it was doing.

I've taken courses in javascript and Coldfusion, as well as vaguelly looked at Java, but I always go back to PHP. It's close enough to natural English language that you can easily understand what's going on, but both the procedural and OOP methods help you become familiar with the concepts you need to use for other languages.

Everyone's always told me that every programming language is useful in learning other languages, because there are always concepts you can carry across from language to language.

link|flag
vote up 0 vote down

Common Lisp. It has many useful features not usually found in mainstream languages, such as dynamic variables, signals, generic functions and macros.

These are in fact useful generalizations of the way how things are usually implemented (of global variables, exceptions, polymorphism and preprocessor, respectively). That's why I learnt a lot about programming from Common Lisp.

link|flag
vote up 0 vote down

Personally, no language has done this for me. Language is largely syntax. There are implementational differences between them (i.e. OOP vs. procedural, etc.) but I found that I learned the most by doing and refactoring. Creating something that works is not as easy at making something work correctly and efficiently. I think that this is something that applies to any language and is more a tool of the developer than a result of a language.

If anything, language might help introduce you to concepts that you previously did not know existed, but the concepts generally transcend any single language.

link|flag
vote up 0 vote down

I don't think that I can pin this down to any one language. If I had to choose one, I'd probably say Python because it's the one I've programmed in the most. But beyond that, I've been influenced by C++, assembly, Lisp, Ocaml, Python, and Prolog. I also have to mention Forth. It's a language I would never want to program in, but I learned a lot about programming by writing a crappy interpreter for it (that I still have a soft spot for).

And if you count it as a programming language, I'd say that SQL has had a big effect (both in what it does right and what it does wrong). It exposes both the benefits and the dangers of declarative programming.

In general, I don't recommend being influenced mostly by one programming language. Expose yourself to all of them. The worst that could happen is that you learn how not to program.

link|flag
vote up 1 vote down

The first language I learned (BASIC on an Amstrad CPC 464) taught me a love of programming.

C++ taught me that programming is hard.

Object Pascal, by way of Delphi, was the first language someone else taught me, and through it I learned about working with other programmers and some basic good practices.

link|flag
vote up 1 vote down

Ada, for giving a modular way of thinking. This is the most useful feature I use in other languages such as C and bash.

Ada is also a great language for learning how to write dirty code despite its many constraints. I think of the multiple usages of the 'ADDRESS attribute.

link|flag
vote up 0 vote down

Learning C seems to be the favorite answer here, same for criticizing Java.

But I have some experience with C people who 'try' to learn Java.

Well, they have some problems. They would NEVER EVER come to the idea, that a calculator can be modeled by representing different arithmetic operations through individual classes (implementing the same interface).

Instead, evey single C programmer would go with some stupid "int" flag which will be evaluated by some everywhere-copy-and-pasted switch-case.

I am sorry, but these C people are just too stupid for the most basic OOP concepts. I don't see the real advantage here.

Oh yeah, they also say that connecting the concept of structs and functions is OOP.

link|flag
vote up 1 vote down

My answer is python, but not for the reasons given by Bill Williams.

Python's OOP features are swell, but I've touched many languages that do OOP well.

The interactive interpreter is also very nice, but In some ways, my first interactive programming language, HyperCard, almost has python beat.

As far as compact/readable code goes, Python is really spectacular, but with enough care, C++ provides a language for DSL that can be exceoptionally terse and clear.

What really gave me some new tools for thinking about programming in python is generator expressions. Although It's great to be able to shorten 6 lines of iterative code to an expression in a function call, a bigger benefit is that it expresses the whole algorithm together. without allocating any memory. Or really doing any excess work.

I've found that If i really understand the algorithm i'm trying to code, it almost always comes out as a generator expression. It's only when i'm exploring the problem and figuring it out that i write lots of if and for and try except statements.

link|flag
vote up 2 vote down

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|flag
vote up 1 vote down

I am still a student but my first language - Java, has been the most important to me. While some people might moan about "java schools", I have to disagree. My University taught us algorithm solving and thinking first, then we were introduced to Java. I think the reason was that it is popular (obviously), but also easy to set up and start programming. Just download eclipse for example. We didn't use any of the built in Java features though - we coded our own linked lists, etc. At first, we just used the main method but very soon after starting we were introduced to OOP with classes and methods.

"C gives you practically nothing. Anything you want you have to build yourself."

If you want to learn, the obvious solution is just to build everything yourself anyway - no matter what the language. I would recommend Java as a first language to anyone I know because it allows you to start without getting bogged down in details and with the eclipse IDE, they'll be programming in no time. Then they can explore other languages with features such as pointers and memory management.

link|flag
vote up 2 vote down

As much as all others are going to disagree with me (assuming anyone reads this far down in the list of posts): PHP

What the hell? PHP??? Yes, PHP and languages like it directly address the problem at hand. When I work in lower level languages, I get wrapped up in implementation. When I work in higher level languages, I get wrapped up in OOP thinking. In both cases, I often stop and think -- how would I have done that in PHP. I never then go on to code as though I were working in PHP, but it reminds me to put my focus back on solving the problem and less on over-engineering or esoteric design ideas.

I'm certainly NOT calling PHP some sort of panacea. It simply reminds me that I set out to create a certain output, and to not let myself get unnecessarily distracted. When I reel myself back in after getting re-centered, my coding gets better and faster.

link|flag
vote up 1 vote down

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|flag
vote up 2 vote down

Definitely C.Because it even gives you an idea of how any programming language's compiler or executer works.

link|flag
vote up 2 vote down

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|flag
vote up 3 vote down

The thing I love most when learning a language is when it teaches me a new way to think about programming

I barely used Lisp and yet it introduced to me to so much. Before Lisp, I only thought in the imperative paradigm

Python is where I get a more sweet syntax of Lisp. That's where I started to use first class functions and the way datatypes can just be spelt out makes it all so elegant. It also got me to start tabbing code. The structures that mix naturally makes everything feel concise and readable, something I had previously not thought possible

C++ brings pointers. Before C++, I thought all datastructures were just fancy arrays

Assembly is weird. Programming in such a deliberate language is like playing an RTS that has excessive micromanagement. It's one of those languages we should all learn but not use

link|flag
vote up 3 vote down

I hope i don't get bludgeoned for this, but x86 Assembly has taught me the work behind the code so to speak. I am glad it was one of the first languages i looked into. Always looking for more optimization, speed, and smaller executables drove me to learn ASM, and believe it or not it will help you write better high level code. Whenever I use C I am constantly thinking of optimizations -- what the fastest way is to make a huge calculation or iterate through massive amounts of data. Read up on the "Write Great Code" series if you're interested to learn that little bit more.

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

Erlang for showing a better way to do concurrency than the shared state memory approach common in most mainstream languages. Getting into thinking in a functional style was a nice side effect.

link|flag
vote up 2 vote down

The largest impact on my understanding of programming has not been a particular language, but a programming languages course. This is almost diametrically opposed to C - it's the theoretical underpinnings of what we do, as opposed to learning the way the machines we've created to help us program do things. Only now do I actually understand what a closure is, and why they are important to get right, along with static scoping. I also grew a larger appreciation for static typing, and taught me that a language without type annotations isn't necessarily a dynamically typed one.

We also learned about continuations and how they apply to web programming, and various other things.

The languages we used to achieve our goals were Scheme, Haskell and a bit of Javascript (there is some interesting FRP stuff at the end of the course), but just learning the languages themselves wouldn't have brought the same level of understanding.

link|flag
vote up 3 vote down

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

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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