Difference between revisions of "Concurrency demos"

From HaskellWiki
Jump to navigation Jump to search
m (Wikify link)
Line 5: Line 5:
 
parallel Haskell are in the Haskell [http://darcs.haskell.org/testsuite/tests/ghc-regress/concurrent/should_run/ concurrency regression tests]. In particular, they show the use of <hask>MVars</hask> and <hask>forkIO</hask>.
 
parallel Haskell are in the Haskell [http://darcs.haskell.org/testsuite/tests/ghc-regress/concurrent/should_run/ concurrency regression tests]. In particular, they show the use of <hask>MVars</hask> and <hask>forkIO</hask>.
   
[http://haskell.org/haskellwiki/Concurrency/Zeta Riemann's Zeta function approximation]
+
*[[Concurrency demos/Zeta |Riemann's Zeta function approximation]]

Revision as of 22:57, 28 November 2006


A large range of small demonstration programs for using concurrent and parallel Haskell are in the Haskell concurrency regression tests. In particular, they show the use of MVars and forkIO.