Difference between revisions of "Example code"

From HaskellWiki
Jump to navigation Jump to search
(typo)
Line 52: Line 52:
 
these pages is automatically licensed under the Simple Permissive
 
these pages is automatically licensed under the Simple Permissive
 
License ([[HaskellWiki:Copyrights]]).
 
License ([[HaskellWiki:Copyrights]]).
  +
  +
Most examples are roughly intermediate to advanced in difficulty.
   
 
* [[Prelude extensions]]: Simple things you've always wished were in the Prelude.
 
* [[Prelude extensions]]: Simple things you've always wished were in the Prelude.
 
* [[Gallery]]: Complete small programs.
 
* [[Gallery]]: Complete small programs.
 
* [[Blow_your_mind|Blow your mind]]: Short, useful, cool, magical examples, which should incite the reader's curiosity and (hopefully) lead him to a deeper understanding of advanced Haskell concepts.
 
* [[Blow_your_mind|Blow your mind]]: Short, useful, cool, magical examples, which should incite the reader's curiosity and (hopefully) lead him to a deeper understanding of advanced Haskell concepts.
* [[Sudoku]]: Solvers for popular puzzle [http://en.wikipedia.org/wiki/Sudoku Sudoku].
+
* [[Sudoku]]: Solvers for popular puzzle [http://en.wikipedia.org/wiki/Sudoku Sudoku]
 
* [[NewMonads]]: Useful monads that are not in the main library.
 
* [[NewMonads]]: Useful monads that are not in the main library.
 
* [[PrincipalVariationSearch]]: Principal variation search
 
* [[PrincipalVariationSearch]]: Principal variation search

Revision as of 12:32, 14 September 2006

To get a feel for what real world Haskell looks like, here are some examples from various popular Haskell projects.

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:

Application code

Code from popular Haskell applications. Such code often makes use of a monadic IO, and sometimes other advanced features such as concurrency:

  • Darcs, a revision control system (uses literate latex Haskell style)
  • Pugs, a perl6 implementation
  • Yi, a text editor
  • Conjure, a bittorrent client
  • DownNova, a file downloading program
  • cpphs, an implementation of the C preprocessor
  • GHC, a Haskell compiler (literate latex style)
  • Djinn, a theorem prover
  • c2hs, a C to Haskell interface generator
  • Lambdabot, an IRC bot
  • hmp3, an curses mp3 player

Wiki examples

Here is a list of other random code collected on this wiki, replacing CodeOnTheWiki. Contributors of code to the old area are encouraged to bring their code over here. This should only be done by the original author because anything on these pages is automatically licensed under the Simple Permissive License (HaskellWiki:Copyrights).

Most examples are roughly intermediate to advanced in difficulty.