shithub: MicroHs

ref: a29aeb7b470b51a212e225b7fe2d5233533b0269
dir: /ghc/System/Console/SimpleReadline.hs/

View raw version
module System.Console.SimpleReadline(
  getInputLine,
  getInputLineHist
  ) where

getInputLine :: String -> IO (Maybe String)
getInputLine _ = error "No getInputLine for ghc"

getInputLineHist :: FilePath -> String -> IO (Maybe String)
getInputLineHist _ _ = error "No getInputLineHist for ghc"