re-instate the documentation for 'Char', which got lost at some point
[ghc-prim.git] / GHC / Bool.hs
1
2 {-# OPTIONS_GHC -XNoImplicitPrelude #-}
3
4 module GHC.Bool (Bool(..)) where
5
6 -- We need Inl etc behind the scenes for the Bool definition
7 import GHC.Generics ()
8
9 default ()
10
11 data Bool = False | True