2
votes
Convert haskell Int with leading zero to String
Depending on what you are planning to do you might want to store the "08" as a string and only convert to int when you need the value.
…
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 …
