Skip to content

Instantly share code, notes, and snippets.

@no-longer-on-githu-b
Created July 25, 2015 08:37
Show Gist options
  • Save no-longer-on-githu-b/4d5cb030c06884e921e5 to your computer and use it in GitHub Desktop.
Save no-longer-on-githu-b/4d5cb030c06884e921e5 to your computer and use it in GitHub Desktop.
do
balanceA <- newTVarIO (400 :: Int)
balanceB <- newTVarIO (900 :: Int)
replicateM_ 100 . forkIO $ do
atomically $ do
modifyTVar balanceA (\x -> x + 2)
modifyTVar balanceB (\x -> x - 2)
readTVarIO balanceA >>= print
readTVarIO balanceB >>= print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment