programming-in-haskell icon indicating copy to clipboard operation
programming-in-haskell copied to clipboard

My solutions for all exercises in "Programming in Haskell" 2nd ed.

Results 2 programming-in-haskell issues
Sort by recently updated
recently updated
newest added

Hi just wanted to say thanks a lot for this repo. It has been very helpful to me while I am working through _Programming in Haskell_. Thanks for your efforts!

I don't think your solution is correct. For example, these two equations ```haskell _ Val x = Val x Val x _ = Val x ``` Give different results for...