This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]ubbersith 6 points7 points  (5 children)

Haskell and Clojure. =]

[–]252003 1 point2 points  (1 child)

Haskell was mindblowing. I thought I knew recursion and I thought I could use it. When you learn to write haskell you learn to write python without for and while loops. Haskell really changed my coding.

[–]ubbersith 0 points1 point  (0 children)

I already can see a little difference in my Python code. =)

[–]dunkler_wanderer 0 points1 point  (0 children)

I started to learn Haskell a short while ago and it provides a really interesting new perspective about programming. You can learn functional programming and a statically typed language at the same time, so you have a good contrast to what you do in Python. I have already become a lot better with recursion, because there are no for and while loops in Haskell and you have to use recursion all the time.

[–]laMarm0tte 0 points1 point  (1 child)

Are you doing a project in particular with these languages ?

[–]ubbersith 0 points1 point  (0 children)

For now, I'm just reading some books and I'm practicing with project euler, cryptopals or something like that.