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