RosettaCodeData/Task/Function-composition/Agda/function-composition.agda
2019-09-12 10:33:56 -07:00

5 lines
146 B
Agda

compose : {a b c} {A : Set a} {B : Set b} {C : Set c}
(B C)
(A B)
A C
compose f g x = f (g x)