5 ms·
What would you say are the skills required to fully understand this?
by raam86 13y ago
What would you say are the skills required to fully understand this?
- egonschiele 13y agoIt's a pretty fast paced intro to a lot of functional programming concepts. You can read a guide like learnyouahaskell.com, which will take you on a gentler ride.
- raam86 13y agoThanks I tried haskell a few ties but never got the real life application to that.
- barefoot 13y agoPossibly not too high. Try using map, filter, and reduce on some example problems and you'll pick it up fairly quickly. Project Euler makes for decent fodder. When you've successfully managed to apply them then try rewriting the functions (delete the implementation you are using - such as the library above - and rewrite it from scratch).
- innguest 13y agoI wouldn't recommend Project Euler - it's math-based and that would be a roundabout way of learning anything else but math. Here's my recommendation: http://www.haskell.org/haskellwiki/H-99:_Ninety-Nine_Haskell_Problems http://www.haskell.org/haskellwiki/H-99:_Ninety-Nine_Haskell...