mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 03:10:54 +01:00
8 lines
241 B
Agda
8 lines
241 B
Agda
module FFI.Data.Maybe where
|
|
|
|
{-# FOREIGN GHC import qualified Data.Maybe #-}
|
|
|
|
data Maybe (A : Set) : Set where
|
|
nothing : Maybe A
|
|
just : A → Maybe A
|
|
{-# COMPILE GHC Maybe = data Data.Maybe.Maybe (Data.Maybe.Nothing|Data.Maybe.Just) #-}
|