DEV Community

Discussion on: What Is Your Main Language?

Collapse
 
jvanbruegge profile image
Jan van Brügge

Haskell is great, the strong type system pushes al your errors to the boundaries of your program. There I have haskell-servant for example that automaticly parses json and validates it, so I only have to write handlers dealing with plain Haskell types. It is also magnitudes faster than nodejs or Java. So yeah, I love writing backends in Haskell. Takes a bit of time to get used to, but I never wrote as less code as now for my servers.

Thread Thread
 
rhymes profile image
rhymes

I understand! Thanks for the explanation.