DEV Community

Discussion on: Advent of Haskell: Trying to solve puzzles without knowing Haskell

Collapse
 
cipharius profile image
Valts Liepiņš

Heh, I happened to do exactly the same last year. I still use Haskell and it has become my go to langusge for personal projects!

As for testing, Haskell has this QuickCheck library, that allows defining some properties for your functions and QuickCheck will test them against randomized inputs.

Collapse
 
weph profile image
Philip Weinke

Cool. I know QuickCheck from Go and just learned that it has its origin in Haskell.