1.1
- 10
- 4
- 8
- 3
- 6
- None
- None
- 19
-
f
- 4
- 16
- 6
- 16
1.2
(/ (+ 5 4 (- 2 (- 3 (+ 6 4/5)))) (* 3 (- 6 2) (- 7 2)))
1.4
Adds absolute value of b by subtracting b from a if it is negative otherwise adding the a and b
1.5
The expression will not evaluate in an interpreter that uses applicative order. In normal order the expression will evaluate to 0. In an applicative order interpreter 0 and (p) are evaluated prior to their binding in test; in a normal order interpreter the arguments are not evaluated until they are used inside the function test. In essence in normal order all forms are special forms.
1.6
The function will never return since it evaluates both the then-clause and else-clause prior to the call the function new-if.