9 lines
246 B
Haskell
9 lines
246 B
Haskell
|
module Param where
|
||
|
|
||
|
data Options = Options { convert :: [String] -> String
|
||
|
, ghc :: FilePath
|
||
|
, ghci :: FilePath
|
||
|
, ghcPkg :: FilePath
|
||
|
}
|
||
|
|