Talk:Concurrency demos/Zeta

From HaskellWiki
Revision as of 19:45, 29 November 2006 by Mux (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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