|
Some recent replies made on our forums |
Chapter 3
|
I don't think SamLowry's solution to Exercise 3.19 is correct.
A cycle constructed as below, for example, is not properly detected.
(define a-cycle '((a . #f) b))
(set-cdr! (car a-cycle) (car a-cycle))
(cycle? a-cycle) ; this should return... |
Posted April 23, 2009 8:37:47 PM
|
[Scheme] Concurrency
|
I've also wondered about Exercise 3.42 and Sam's explanation makes sense to me as well.
So, if I understand this correctly ...
If I have some object A created by (define A (make-account 10))
And if A happened to have several worker threads eac... |
Posted April 23, 2009 7:43:55 PM
|
View All Replies Made By This User
|