vote up 2 vote down star
1

What is your favorite programming language? This is not the one you use at work, but the one you tend to use for personal projects... the one that you first go to because it most matches your way of thinking / programming style, etc...

List the reasons for it, too.

flag

33 Answers

prev 1 2
vote up 11 vote down

I've been loving Ruby lately for a lot of the same reasons you said you like Python (mainly the dynamic typing).

link|flag
vote up 9 vote down

I use Java and Python at work, but I can't get away from the straight-up "enough rope" appeal of C

link|flag
vote up 15 vote down

My personal favorite is Python. I picked it up after learning QBasic, C, then C++... it was a relief from static typing with explicit type declarations (as opposed to Haskell which has a more serious type system).

  • It allows me to just write code and run it with surprisingly little strange bug behavior (considering the dynamic typing).
  • The REPL is a necessity.
  • The built-in documentation (help(list), etc...) along with dir means I don't have to go groping around on the internet to find out what random functions are called or their syntax, which I always find myself doing with Java.

  • link|flag
    prev 1 2

    Your Answer

    Get an OpenID
    or

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