Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Update DevelMain
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdone committed Nov 29, 2014
1 parent d8b59e7 commit 460b042
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/DevelMain.hs
Expand Up @@ -12,10 +12,9 @@ import TryHaskell
-- | Main entry point.
main :: IO ()
main =
do ((stats,statsT),(cache,cacheT)) <- setupServer
do ((stats,statsT),cache) <- setupServer
tid <- forkIO (finally (startServer cache stats)
(do killThread statsT
killThread cacheT))
(killThread statsT))
putStrLn ("Writing store with " ++ show tid ++ " ...")
writeStore (Store 0) tid

Expand Down

0 comments on commit 460b042

Please sign in to comment.