University of Washington • CSE583 • D. Notkin © 2000
85
Strict functions
lA strict function requires all its parameters in order to be evaluated
lsqr is strict, since it requires its (only) parameter
–(define one (x) 1) is not-strict
–(one 92)