An open API service indexing awesome lists of open source software.

https://github.com/agjs/learning-haskell

My personal repository for learning and playing with Haskell (Learning you Haskell for Good by Miran Lipovača)
https://github.com/agjs/learning-haskell

Last synced: about 1 year ago
JSON representation

My personal repository for learning and playing with Haskell (Learning you Haskell for Good by Miran Lipovača)

Awesome Lists containing this project

README

          

# Learn you a Haskell for Good
#### by Miran Lipovača

* My private repository for saving some examples from the book I recently bought. Since this is my first experience with functional programming (other then playing with ramdajs and lodash in JS), I wanted to save all the examples to a repo so I can go back to it when I forget something. Functional programming is quiet different from imperative way we've been thought for so long so it takes time to adept.

#### Platform & GHCI
* Download - https://www.haskell.org/platform/
* :set prompt "ghci >"
* :l learn-haskell.hs
* :! run the shell command
* :! cls under windows
* :! clear under linux and OS X

#### Atom
* https://atom.io/packages/language-haskell
* https://atom.io/packages/ide-haskell

#### Documentation
* http://stackoverflow.com/questions/1012573/getting-started-with-haskell - Most of the links below are extracted from this one
* http://stackoverflow.com/questions/16918/beginners-guide-to-haskell
* http://learnyouahaskell.com/chapters
* https://wiki.haskell.org/H-99:_Ninety-Nine_Haskell_Problems
* https://www.haskell.org/hoogle/?hoogle=maximum
* https://projecteuler.net/index.php?section=problems
* http://book.realworldhaskell.org/read/
* http://book.realworldhaskell.org/
* http://blog.tmorris.net/posts/20-intermediate-haskell-exercises/
* https://channel9.msdn.com/Series/C9-Lectures-Erik-Meijer-Functional-Programming-Fundamentals/Lecture-Series-Erik-Meijer-Functional-Programming-Fundamentals-Chapter-1 - Video