luau/prototyping/Properties/Functions.agda
ajeffrey@roblox.com c99c1aa486 WIP
2022-03-22 12:49:57 -05:00

6 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)