RosettaCodeData/Task/Function-composition/Ol/function-composition.ol
2023-07-01 13:44:08 -04:00

6 lines
95 B
Text

(define (compose f g)
(lambda (x) (f (g x))))
;; or:
(define ((compose f g) x) (f (g x)))