(define (compose f g)
(lambda (x) (f (g x))))
(define square
(lambda (x) (* x x)))
(define inc
(lambda (x) (+ x 1)))
((compose square inc) 6)
(define (compose f g)
(lambda (x) (f (g x))))
(define square
(lambda (x) (* x x)))
(define inc
(lambda (x) (+ x 1)))
((compose square inc) 6)