Example code: Difference between revisions
(→Library code: fix dead links) |
|||
Line 23: | Line 23: | ||
* [[Simple_Unix_tools | Unix.hs]], simple unix tools, for beginner Haskellers | * [[Simple_Unix_tools | Unix.hs]], simple unix tools, for beginner Haskellers | ||
* [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data | * [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data.List.html Data.List], the standard list library ([http://hackage.haskell.org/packages/archive/base/latest/doc/html/Data-List.html docs]) | ||
* [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data | * [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data.Maybe.html Data.Maybe], the <code>Maybe</code> type ([http://hackage.haskell.org/packages/archive/base/latest/doc/html/Data-Maybe.html docs]) | ||
* [http://hackage.haskell.org/packages/archive/containers/latest/doc/html/src/Data | * [http://hackage.haskell.org/packages/archive/containers/latest/doc/html/src/Data.Map.html Data.Map], the standard finite map ([http://www.haskell.org/ghc/docs/latest/html/libraries/containers-0.4.2.1/index.html docs]) | ||
* [http://hackage.haskell.org/packages/archive/containers/latest/doc/html/src/Data | * [http://hackage.haskell.org/packages/archive/containers/latest/doc/html/src/Data.Graph.html Data.Graph], a graph type ([http://hackage.haskell.org/packages/archive/containers/latest/doc/html/Data-Graph.html docs]) | ||
* [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Control | * [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Control.Monad.html Control.Monad], basic monad support ([http://hackage.haskell.org/packages/archive/base/latest/doc/html/Control-Monad.html docs]) | ||
* [ | * [https://github.com/nick8325/quickcheck QuickCheck], a testing framework ([http://hackage.haskell.org/package/QuickCheck docs]) | ||
* [http://hackage.haskell.org/packages/archive/pretty/latest/doc/html/src/Text-PrettyPrint-HughesPJ.html PrettyPrint.hs], a pretty printing library ([http://hackage.haskell.org/package/pretty docs]) | * [http://hackage.haskell.org/packages/archive/pretty/latest/doc/html/src/Text-PrettyPrint-HughesPJ.html PrettyPrint.hs], a pretty printing library ([http://hackage.haskell.org/package/pretty docs]) | ||
* [http://hackage.haskell.org/packages/archive/transformers/latest/doc/html/src/Control-Monad-Trans-State-Lazy.html State. | * [http://hackage.haskell.org/packages/archive/transformers/latest/doc/html/src/Control-Monad-Trans-State-Lazy.html Control.Monad.Trans.State.Lazy], a state monad ([http://hackage.haskell.org/packages/archive/transformers/latest/doc/html/Control-Monad-Trans-State-Lazy.html docs]) | ||
<!-- | <!-- | ||
* [http://www.cse.unsw.edu.au/~dons/data/Music.html Music.hs], a music composition system (literate latex-style Haskell) ([http://darcs.haskell.org/haskore/src/Haskore/Music.lhs raw], [http://www.haskell.org/haskore/ home]) | * [http://www.cse.unsw.edu.au/~dons/data/Music.html Music.hs], a music composition system (literate latex-style Haskell) ([http://darcs.haskell.org/haskore/src/Haskore/Music.lhs raw], [http://www.haskell.org/haskore/ home]) | ||
Line 49: | Line 49: | ||
--> | --> | ||
* [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data | * [http://hackage.haskell.org/packages/archive/base/latest/doc/html/src/Data.Foldable.html Data.Foldable], traversable data structures ([http://hackage.haskell.org/packages/archive/base/latest/doc/html/Data-Foldable.html docs]) | ||
* [ | * [https://github.com/haskell/bytestring Data.ByteString], high-performance string type ([http://code.haskell.org/bytestring/Data/ByteString.hs raw], [http://hackage.haskell.org/package/bytestring docs]) | ||
* [https://github.com/feuerbach/smallcheck | * [https://github.com/feuerbach/smallcheck SmallCheck], a testing framework ([https://raw.github.com/feuerbach/smallcheck/master/Test/SmallCheck.hs raw], [http://hackage.haskell.org/package/smallcheck docs]) | ||
* [http://www.haskell.org/haskellwiki/Darcs_repositories More code ...] | * [http://www.haskell.org/haskellwiki/Darcs_repositories More code ...] |
Revision as of 09:06, 18 December 2016
To get a feel for what real world Haskell looks like, here are some examples from various popular Haskell projects. To start learning the language, good places to start are Learning Haskell, Haskell in 5 steps, and Books and tutorials.
More code may be found on the wiki.
Library code
Library code usually differs from application code: it is often highly structured, and documented with haddock, and can be rather optimised. Some instructive examples (syntax highlighting by hscolour):
- A Haskell Prelude.hs, foundational Haskell library (docs)
- Unix.hs, simple unix tools, for beginner Haskellers
- Data.Maybe, the
Maybe
type (docs)
- Data.Graph, a graph type (docs)
- Control.Monad, basic monad support (docs)
- QuickCheck, a testing framework (docs)
- PrettyPrint.hs, a pretty printing library (docs)
- Control.Monad.Trans.State.Lazy, a state monad (docs)
- Dfa.lhs, finite automata (literate Bird-style Haskell)
- RedBlackTree.hs, a red-black tree
- Data.Foldable, traversable data structures (docs)
- Data.ByteString, high-performance string type (raw, docs)
- SmallCheck, a testing framework (raw, docs)
Application code
Code from popular Haskell applications. Such code often makes use of a monadic IO, and sometimes other advanced features such as concurrency:
- Yi, a text editor, (home, raw, [http://hackage.haskell.org/package/yi doc)
- hmp3, a curses mp3 player
Examples
- Tying the Knot
- An example that illustrates different ways to define recursive data structures. The example defines a simple language (illustrating how to define some recursive structures) and an interpreter for the language (illustrating how to work with the recursive structures).
- A tour of the Haskell Monad functions
- Small usage examples of the basic Haskell monad functions