luau/prototyping/Properties/Functions.agda

7 lines
141 B
Agda

module Properties.Functions where
infixr 5 _∘_
_∘_ : {A B C : Set} (B C) (A B) (A C)
(f g) x = f (g x)