Difference between revisions of "Example code"

From HaskellWiki
Jump to navigation Jump to search
(update text)
(url)
Line 49: Line 49:
 
* [http://haskell.org/haskellwiki/Darcs_repositories More code ...]
 
* [http://haskell.org/haskellwiki/Darcs_repositories More code ...]
   
  +
More code may be found [http://haskell.org/haskellwiki/Category:Code on the wiki].
=== Wiki examples===
 
 
Here is a list of other random code collected on this wiki, replacing
 
[http://haskell.org/hawiki/CodeOnTheWiki 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.
 
 
* [[Prelude extensions]]: Simple things you've always wished were in the Prelude.
 
* [[Gallery]]: Complete small programs.
 
* [[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]
 
* [[New monads]]: Useful monads that are not in the main library.
 
* [[Principal variation search]]
 
* [[Great language shootout]]: Examples from the [http://shootout.alioth.debian.org/index.php The Computer Language Shootout Benchmarks].
 
* [http://www.informatik.uni-bonn.de/~ralf/ Ralf Hinze] maintains a [http://www.informatik.uni-bonn.de/~ralf/software.html Haskell software page]
 
   
 
[[Category:Code]]
 
[[Category:Code]]

Revision as of 02:57, 23 October 2006

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 here, here and here.

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):

Application code

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

More code may be found on the wiki.