Implement tower
from Exercise 17 non-recursively using a scheme for primitive recursion:
prim c f 0 = c
prim c f n = f n (prim c f (n - 1))
Implement tower
from Exercise 17 non-recursively using a scheme for primitive recursion:
prim c f 0 = c
prim c f n = f n (prim c f (n - 1))