]> git.rkrishnan.org Git - sicp.git/blob - src/sicp/ex4_25.rkt
20c41369371e0f919e25195acd3b50c103ec913e
[sicp.git] / src / sicp / ex4_25.rkt
1 #lang racket
2
3 #|
4
5 The call (factorial 5) will never call 'unless' and will be recursively call 'factorial' for ever.
6
7 It will work in a normal order language because none of the arguments of 'unless' are evaluated until
8 they are used inside.
9
10 |#