944c39f855521aa390b473df33f3afb605c1aede
[lambda.git] / _learning_haskell.mdwn
1 *   [Try Haskell in your browser](http://tryhaskell.org) (slow, bare-bones)
2 *   [[Installing Haskell|/installing#haskell]]
3
4 <!-- -->
5 *   Wikipedia on
6 [Haskell](https://en.wikipedia.org/wiki/Haskell_%28programming_language%29) |
7 [GHC](https://en.wikipedia.org/wiki/Glasgow_Haskell_Compiler)
8 *   Haskell Wiki's [Introduction and explanation of Haskell](https://wiki.haskell.org/Introduction)
9
10 <!-- -->
11 ### Quick Overviews ###
12 <!-- [Haskell Wiki's Getting Started](https://wiki.haskell.org/Haskell_in_5_steps) -->
13 *   [Learn Haskell in 10 minutes](https://wiki.haskell.org/Learn_Haskell_in_10_minutes)
14
15 ### For people who are new to programming ###
16
17 *   [The Haskell Wikibook](https://en.wikibooks.org/wiki/Haskell)
18 *   [Yet Another Haskell Tutorial](https://en.wikibooks.org/wiki/Yet_Another_Haskell_Tutorial/Preamble)
19
20 ### For programmers who are new to functional programming ###
21
22 *   [Haskell Tutorial for C Programmers](https://wiki.haskell.org/Haskell_Tutorial_for_C_Programmers)
23 *   [Hitchhiker's guide to Haskell](https://wiki.haskell.org/Hitchhikers_guide_to_Haskell)
24 *   [Learn You a Haskell for Great Good](http://learnyouahaskell.com/chapters)
25
26 ### For programmers familiar with functional programming in other languages ###
27
28 *   [A brief introduction to Haskell](https://wiki.haskell.org/A_brief_introduction_to_Haskell)
29 *   [Gentle Introduction to Haskell](https://www.haskell.org/tutorial) (from 2000, aimed at people who have some experience with functional programming)
30
31
32 <!-- -->
33 *   [Real World Haskell](http://book.realworldhaskell.org/read) (from 2008, more advanced)
34 *   ""
35 *   [Meta-tutorial](https://wiki.haskell.org/Meta-tutorial)
36 *   [Learning Haskell](https://wiki.haskell.org/Learning_Haskell)
37 *   ""
38 *   [Books and Tutorials](https://wiki.haskell.org/Books_and_tutorials)
39 *   [Tutorials](https://wiki.haskell.org/Tutorials)
40 *   [Books](https://wiki.haskell.org/Books)
41
42 <!-- -->
43
44 * "Don't mind Haskell syntax, but not yet comfortable with do-notation / monads"
45 * [You could have invented monads! (and maybe you already have!)](http://sigfpe.blogspot.com/2006/08/you-could-have-invented-monads-and.html)
46 * [Understanding Haskell Monads](http://ertes.de/articles/monads.html)
47 * [All About Monads](http://monads.haskell.cz/html/index.html)
48
49 * "Metaphors and analogies"
50 * [Understanding monads](http://en.wikibooks.org/wiki/Haskell/Understanding_monads)
51 * [Monads as containers](http://www.haskell.org/haskellwiki/Monads_as_containers)
52
53 * "Making monads nest"
54 * [Monad Transformers Step by Step](www.grabmueller.de/martin/www/pub/Transformers.pdf)
55 * [Grok Monad Transformers](http://sigfpe.blogspot.com/2006/05/grok-haskell-monad-transformers.html)
56
57 * "Links to Category Theory"
58 * [The Haskell Programmer's Guide to the IO Monad](http://doc.utwente.nl/53411/1/00000154.pdf)
59
60 * ""
61 * [A tour of the Haskell Monad functions](http://members.chello.nl/hjgtuyl/tourdemonad.html)
62 * [Introduction to IO](https://wiki.haskell.org/Introduction_to_IO) -- quick overview
63 * [Quick interpreters with the Reader monad](http://www.cse.unsw.edu.au/~dons/blog/2006/12/11#interpreters-with-reader-monads)
64
65
66 <!-- -->
67 *   [Haskell Wiki](https://wiki.haskell.org), with a link to download the [Haskell Platform](https://www.haskell.org/platform/contents.html)
68 *   [New Haskell Wiki](https://new-www.haskell.org)
69
70
71 ### More Advanced Docs ###
72
73 *   GHC User's Guide from
74 [Haskell Platform](https://www.haskell.org/platform/doc/2014.2.0.0/ghc/users_guide) | 
75 [latest](https://downloads.haskell.org/~ghc/latest/docs/html/users_guide)
76 *   Libraries from
77 [Haskell Platform](https://www.haskell.org/platform/doc/2014.2.0.0/platform/doc) |
78 [Haskell 2010](https://www.haskell.org/onlinereport/haskell2010/haskellpa2.html) <!--
79 [GHC latest bootstrap libraries](https://downloads.haskell.org/~ghc/latest/docs/html/libraries)
80 -->
81 *   GHC [releases](https://www.haskell.org/ghc) and
82 [other docs](https://wiki.haskell.org/GHC), including
83 [GHCi](https://wiki.haskell.org/GHC/GHCi) and
84 [GHC FAQ](https://wiki.haskell.org/GHC/FAQ)
85 *   Formal language specs:
86 [Haskell 98](https://www.haskell.org/onlinereport) |
87 [Haskell 2010](https://www.haskell.org/onlinereport/haskell2010) |
88 [Haskell'](https://ghc.haskell.org/trac/haskell-prime)
89 *   [What I Wish I Knew When Learning Haskell](http://dev.stephendiehl.com/hask)
90 *   [Cabal](https://wiki.haskell.org/Cabal) package manager:
91 [User Guide](https://www.haskell.org/cabal/users-guide) |
92 [command-line tool](https://wiki.haskell.org/Cabal-Install) |
93 [installing Cabal packages](https://wiki.haskell.org/Cabal/How_to_install_a_Cabal_package) |
94 [cabal-setup](https://hackage.haskell.org/package/cabal-setup) |
95 help with [problems](https://wiki.haskell.org/Cabal/Survival)
96 [FAQ1](https://wiki.haskell.org/Cabal/FAQ)
97 [FAQ2](https://www.haskell.org/cabal/FAQ.html) |
98 [writing Haskell programs](https://wiki.haskell.org/How_to_write_a_Haskell_program)
99 *   [Hackage](https://hackage.haskell.org) package database
100 *   Haskell API Search: [Hoogle](https://www.haskell.org/hoogle) | [Hayoo](http://hayoo.fh-wedel.de)
101 *   [Haddock](https://www.haskell.org/haddock) documentation generator:
102 User Guide from [Haskell Platform](https://www.haskell.org/platform/doc/2014.2.0.0/ghc/haddock/index.html) |
103 [latest](https://www.haskell.org/haddock/doc/html) |
104 [FAQ](https://wiki.haskell.org/Haddock/FAQ)
105
106 <!-- -->
107 *   [Reddit's r/haskell](https://www.reddit.com/r/haskell)
108 *   [Stack Overflow](https://stackoverflow.com/questions/tagged?tagnames=haskell) questions tagged "haskell"
109 *   [GHC Developer Wiki](https://ghc.haskell.org/trac/ghc)