mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-03 18:51:42 +00:00
6 lines
141 B
Agda
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)
|