Difference between revisions of "Talk:Concurrency demos/Zeta"

From HaskellWiki
Jump to navigation Jump to search
 
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
 
</haskell>
 
</haskell>
 
[[User:Remi|Remi]]
 
[[User:Remi|Remi]]
  +
  +
You're right, I've changed the code in the example, thanks!
  +
  +
[[User:Mux|Mux]]

Latest revision as of 19:45, 29 November 2006

Shouldn't

    forkIO (putMVar mvar (zetaRange s range))

be

    forkIO (putMVar mvar $! zetaRange s range)

Remi

You're right, I've changed the code in the example, thanks!

Mux