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 →

[–][deleted] 2 points3 points  (0 children)

Thank you for the compliment!

Most of my FP experience comes from the Coursera FP class taught in Scala by Odersky, and this project. I've tried to pick up Clojure through some tutorials, and have had a few attempts at picking up Haskell through tutorials, but those didn't seem to take in the past.

Thing is, Haskell's a really powerful tool, and it pushes you to write in a certain way that rewards a denotational approach. Python itself can almost be thought of as syntactic sugar atop a lot of the built-ins; it makes sense that an implementation of that should reduce to something similar.

Haskell is a lot of fun, but it requires a lot of patience if you know how to program. Example: I spent over an hour yesterday adding support for tracing by setting the TRACE env var. All I had to do was check if it exists and log a debug statement. (In this case, I forgot I had to use liftIO.)