RosettaCodeData/Task/Function-composition/Ol/function-composition.ol

7 lines
95 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(define (compose f g)
(lambda (x) (f (g x))))
;; or:
(define ((compose f g) x) (f (g x)))