{-# LANGUAGE NoImplicitPrelude #-}

module Prelude.Source.GHC.Types (
    Bool(False, True),
    Ordering(LT, EQ, GT),
    Char,
    Int, Integer, Float, Double,
  ) where

import Prelude (
    Bool(False, True),
    Ordering(LT, EQ, GT),
    Char,
    Int, Integer, Float, Double,
  )