mirror of
https://github.com/luau-lang/luau.git
synced 2024-12-13 21:40:43 +00:00
5187e64f88
* First cut interpreter
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
|
||
|