lhs2TeX-hl-0.1.1.0: src/Literate/SimpleInfo.hs
module Literate.SimpleInfo where
data SimpleInfo = SimpleInfo {
fileName :: String,
moduleName :: String,
types :: [String],
constructors :: [String],
functions :: [String],
operators :: [String],
literalNumbers :: [String],
literalChars :: [Char],
literalStrings :: [String]
} deriving Show
simpleinfo = SimpleInfo{ fileName = ""
, moduleName = ""
, types = []
, constructors = []
, functions = []
, operators = []
, literalNumbers = []
, literalChars = []
, literalStrings = []
}