mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-16 06:45:44 +08:00
7721955ba5
Adds subtyping to strict mode.
7 lines
141 B
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)
|