]> git.rkrishnan.org Git - sicp.git/blob - src/sicp/ex3_41.rkt
Solution to 4.30. Extremely enlightening!
[sicp.git] / src / sicp / ex3_41.rkt
1 #lang racket
2
3 #|
4
5 I don't agree. 'balance' is only read and for a particular account, it is 
6 not usually read while another transaction is in progress. Further, even if
7 it is read concurrently with a transaction (deposit or withdrawal), one will
8 get either the value before the transaction or the one after. Both are 
9 acceptable.
10
11 |#