Search Results

1
vote

What’s the next thing on your list to learn?

I started learning Haskell and so far it's real fun. I must admit it takes some time to get used to it (20 years of imperative coding getting in the way) but even the most trivial …
6
votes

How do you do generic programming in Haskell?

As Earwicker sais, the example is not as meaningful in Haskell. If you absolutely want to have it anyway, here is something similar (swapping the two parts of a pair), c&p from an interactive s …
5
votes

How long does it take for you to be comfortable with Haskell?

The point is not to write fast Haskell code, but to write Haskell code fast. When you get there and you need to make your code fast(er), start optimizing (or use the FFI, you don't have to forget y …
6
votes

What are some good Haskell Primers/Tutorials for beginners?

There's also Yet Another Haskell Tutorial and A Gentle Introduction to Haske …