You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
Exercise 1.4: Observe that our model of
|
|
evaluation allows for combinations whose operators are compound expressions.
|
|
Use this observation to describe the behavior of the following procedure:
|
|
|
|
|
|
(define (a-plus-abs-b a b)
|
|
((if (> b 0) + -) a b))
|
|
|