문제

Working through Simon Peyton Jones concurrency example, I have the following code:

import Control.Concurrent.STM
import Control.Concurrent.STM.TVar

deposit account amount = do
    bal <- readTVar account
    writeTVar account (bal+amount)

I am trying to test this in GHCi REPL

*Main> checking <- atomically $ newTVar 100
*Main> atomically $ deposit checking 10

How do I verify my checking balance is $110?

I have tried

*Main> checking
*Main> readTVar checking
*Main> balance <- readTVar checking
도움이 되었습니까?

해결책

atomically $ readTVar checking does what you want. The GHCi REPL automatically executes any IO action that you give it.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top