mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-14 06:00:39 +00:00
11 lines
186 B
Agda
11 lines
186 B
Agda
|
module Luau.Type where
|
|||
|
|
|||
|
data Type : Set where
|
|||
|
nil : Type
|
|||
|
_⇒_ : Type → Type → Type
|
|||
|
none : Type
|
|||
|
any : Type
|
|||
|
_∪_ : Type → Type → Type
|
|||
|
_∩_ : Type → Type → Type
|
|||
|
|