mirror of
https://github.com/luau-lang/luau.git
synced 2025-01-07 11:59:11 +00:00
9 lines
207 B
Agda
9 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) #-}
|