X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=_learning_haskell.mdwn;h=9a823f00d601bb176af23371e1c9a183933155d7;hp=f736662533cc672de9189da8ee5072933b4e0952;hb=eba2ff5d7c1d8da31c9fa397553d78178b122737;hpb=ab8d24d91de12396c5f3fd316077b62337c1c7e2 diff --git a/_learning_haskell.mdwn b/_learning_haskell.mdwn index f7366625..9a823f00 100644 --- a/_learning_haskell.mdwn +++ b/_learning_haskell.mdwn @@ -2,26 +2,30 @@ * This site's guide to [[Installing Haskell|/installing#haskell]] -* Haskell Wiki's [Introduction and explanation of Haskell](https://wiki.haskell.org/Introduction) -* [Why Haskell matters](https://wiki.haskell.org/Why_Haskell_matters) +* [What is Haskell?](https://wiki.haskell.org/Introduction) and +[Why Haskell matters](https://wiki.haskell.org/Why_Haskell_matters) * [Learn Haskell in 10 minutes](https://wiki.haskell.org/Learn_Haskell_in_10_minutes) * [A brief introduction to Haskell](https://wiki.haskell.org/A_brief_introduction_to_Haskell) +* [Quick Reference](https://wiki.haskell.org/Reference_card) | [Cheat Sheet](http://cheatsheet.codeslower.com/CheatSheet.pdf) +* [Tour of the Haskell Syntax](https://web.archive.org/web/20100529023840/http://cs.anu.edu.au/student/comp1100/haskell/tourofsyntax.html) +* [Walla Walla Overview](http://cs.wallawalla.edu/research/KU/PR/Haskell.html) (18 pp.) * Wikipedia on -[Haskell](https://en.wikipedia.org/wiki/Haskell_%28programming_language%29) | +[Haskell](https://en.wikipedia.org/wiki/Haskell_%28programming_language%29) and [GHC](https://en.wikipedia.org/wiki/Glasgow_Haskell_Compiler) + * [Haskell Wiki](https://wiki.haskell.org), with a link to download the [Haskell Platform](https://www.haskell.org/platform/contents.html) * [New Haskell Wiki](https://new-www.haskell.org) * [Haskell FAQ](https://wiki.haskell.org/FAQ) -### Tutorials ### +## Tutorials ## * Lecture notes from a good [Intro to Haskell course](http://www.seas.upenn.edu/~cis194/fall14/lectures.html) at Penn * [The Haskell Wikibook](https://en.wikibooks.org/wiki/Haskell) -* [Learn You a Haskell for Great Good](http://learnyouahaskell.com/chapters) (400 pp. illustrated and highly-praised textbook from 2011) +* [Learn You a Haskell for Great Good](http://learnyouahaskell.com/chapters) (400 pp. illustrated and highly-praised text from 2011) * [Yet Another Haskell Tutorial](https://en.wikibooks.org/wiki/Yet_Another_Haskell_Tutorial/Preamble) (YAHT, also as 192 pp. [pdf](http://hal3.name/docs/daume02yaht.pdf)) @@ -35,7 +39,15 @@ * Comprehensive List at [Haskell Wiki](https://wiki.haskell.org/Tutorials) -### Advanced Docs, listed here for reference ### +### Other ### +* [Lambda Lessons](http://stevekrouse.github.io/hs.js), experiment with evaluating `map` and `fold` step-by-step +* [A Tour of the Haskell Prelude](http://www.letu.edu/people/jaytevis/Programming-Languages/Haskell/tourofprelude.html) +* [Haskell for OCaml Programmers](http://science.raphael.poss.name/haskell-for-ocaml-programmers.pdf) +* [ML Dialects and Haskell](http://hyperpolyglot.org/ml) +* [Differences between Haskell and SML?](http://www.quora.com/What-are-the-key-differences-between-Haskell-and-Standard-ML?browse) + + +## Advanced Docs, listed here for reference ## * GHC User's Guide from [Haskell Platform](https://www.haskell.org/platform/doc/2014.2.0.0/ghc/users_guide) | @@ -54,17 +66,17 @@ * Formal language specs: [Haskell 98](https://www.haskell.org/onlinereport) | [Haskell 2010](https://www.haskell.org/onlinereport/haskell2010) | -[Haskell'](https://ghc.haskell.org/trac/haskell-prime) +[Haskell′](https://ghc.haskell.org/trac/haskell-prime) * [Cabal](https://wiki.haskell.org/Cabal) package manager: [User Guide](https://www.haskell.org/cabal/users-guide) | -[command-line tool](https://wiki.haskell.org/Cabal-Install) | -[installing Cabal packages](https://wiki.haskell.org/Cabal/How_to_install_a_Cabal_package) | +[tool usage](https://wiki.haskell.org/Cabal-Install) | +[installing packages](https://wiki.haskell.org/Cabal/How_to_install_a_Cabal_package) | [cabal-setup](https://hackage.haskell.org/package/cabal-setup) | -help with [problems](https://wiki.haskell.org/Cabal/Survival) +[help](https://wiki.haskell.org/Cabal/Survival) [FAQ1](https://wiki.haskell.org/Cabal/FAQ) [FAQ2](https://www.haskell.org/cabal/FAQ.html) | -[writing Haskell programs](https://wiki.haskell.org/How_to_write_a_Haskell_program) -* [Hackage](https://hackage.haskell.org) package database +[writing programs](https://wiki.haskell.org/How_to_write_a_Haskell_program) +* [Hackage](https://hackage.haskell.org) package repository *
Haskell API Search: Hoogle | @@ -78,7 +90,8 @@ User Guide from [Haskell Platform](https://www.haskell.org/platform/doc/2014.2.0 * [What I Wish I Knew When Learning Haskell](http://dev.stephendiehl.com/hask) (300 pp. website) * [Haskell idioms](https://wiki.haskell.org/Blow_your_mind) +* Haskell Wiki [Glossary](https://wiki.haskell.org/Category:Glossary) * [Reddit's r/haskell](https://www.reddit.com/r/haskell) * [Stack Overflow](https://stackoverflow.com/questions/tagged/haskell?sort=faq) questions tagged "haskell" -* [Real World Haskell](http://book.realworldhaskell.org/read) (714 pp. textbook from 2008, expects you've already mastered the fundamentals of Haskell) +* [Real World Haskell](http://book.realworldhaskell.org/read) (714 pp. text from 2008, expects you've already mastered the fundamentals of Haskell) * [GHC Developer Wiki](https://ghc.haskell.org/trac/ghc)