mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-04 11:11:41 +00:00
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) #-}
|