Back to slide -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'  next -- Keyboard shortcut: 'n'          cps2-direct.scm - Functions w, f, g and h programmed in direct style.Lecture 3 - slide 33 : 43
Program 2

(define (w a b)
  (f (g a) (h b) (g b) (h a)))

(define (f a b c d)
  (+ a b c d))

(define (g a)
  (* a a))

(define (h a)
  (* a a a))