mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
10 lines
186 B
Agda
10 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
|
||
|