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)
- Host: GitHub
- URL: https://github.com/agjs/learning-haskell
- Owner: agjs
- Created: 2016-01-24T15:40:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-24T17:58:32.000Z (over 10 years ago)
- Last Synced: 2025-02-09T01:49:20.101Z (over 1 year ago)
- Language: Haskell
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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