]> git.rkrishnan.org Git - sicp.git/blob - src/sicp/ex3_68.rkt
Solution to 4.33. This had been difficult to get right, though conceptually it was
[sicp.git] / src / sicp / ex3_68.rkt
1 #lang racket
2
3 #|
4
5 'interleave' is a procedure and not a special form because of which the arguments
6 of the interleave will be evaluated before interleave itself is called. This will
7 result in an infinite number of calls to 'pair'.
8
9 |#