elm/compiler/Paths_Elm.hs
Evan Czaplicki cee9f6a9d9 Add two dummy files to make it possible to build the compiler from
within emacs. This makes it faster to type-check things and start
testing functions.
2013-06-23 02:43:58 -07:00

15 lines
No EOL
429 B
Haskell

-- This is a dummy file, but it should not be removed.
-- It makes it possible to build the compiler in GHCi, so you
-- can do some testing from within emacs (or whatever inferior
-- editor you use instead).
module Paths_Elm where
import Data.Version
import System.FilePath
getDataFileName :: FilePath -> IO FilePath
getDataFileName path = return ("dist" </> "data" </> path)
version :: Version
version = Version [0,8,0,3] []