Difference between revisions of "Concurrency demos"

From HaskellWiki
Jump to navigation Jump to search
(Point to concurrency benchmarks for those looking for code)
 
m (Guidelines: "here" link to English.)
Line 3: Line 3:
   
 
A large range of small demonstration programs for using concurrent and
 
A large range of small demonstration programs for using concurrent and
parallel Haskell are [http://darcs.haskell.org/testsuite/tests/ghc-regress/concurrent/should_run/ here]. 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>.

Revision as of 22:06, 3 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.