mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-05 19:09:11 +00:00
041838a942
* First cut reading JSON into an Agda representation of Luau syntax
8 lines
207 B
Agda
8 lines
207 B
Agda
module FFI.Data.Bool where
|
|
|
|
{-# FOREIGN GHC import qualified Data.Bool #-}
|
|
|
|
data Bool : Set where
|
|
false : Bool
|
|
true : Bool
|
|
{-# COMPILE GHC Bool = data Data.Bool.Bool (Data.Bool.False|Data.Bool.True) #-}
|