show/hide this revision's text 3 remove part that's irrelevant, actually

Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does not let you keep on programming in the OO style.

My recommendation is Haskell (although some OO is possible in it too, it's not the typical idiom.) Haskell has mature compilers (ghc) and good testing tools (Quickcheck, etc).It doesn't have great debugging tools AFAIK, because Haskell programs don't have bugs ;-) [Just kidding, but there's an element of truth: many Haskell learners notice a remarkable "if it compiles, it is correct" phenomenon.]

show/hide this revision's text 2 newline

Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does not let you keep on programming in the OO style.

My recommendation is Haskell (although some OO is possible in it too, it's not the typical idiom.)

Haskell has mature compilers (ghc) and good testing tools (Quickcheck, etc). It doesn't have great debugging tools AFAIK, because Haskell programs don't have bugs ;-) [Just kidding, but there's an element of truth: many Haskell learners notice a remarkable "if it compiles, it is correct" phenomenon.]

show/hide this revision's text 1

Seems to me that if you're an experienced OO programmer, you should learn a functional programming language that does not let you keep on programming in the OO style.

My recommendation is Haskell (although some OO is possible in it too, it's not the typical idiom.)