Created
August 16, 2015 15:44
-
-
Save CRogers/05dc460e8a8bce811f30 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: one-source-error | |
version: 0.1.0.0 | |
author: Callum Rogers | |
maintainer: [email protected] | |
category: Testing | |
build-type: Simple | |
cabal-version: >=1.10 | |
library | |
exposed-modules: OneSourceError | |
build-depends: base >=4.8 && <4.9 | |
default-language: Haskell2010 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module OneSourceError where | |
expr :: String | |
expr = 1 ++ "str" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Distribution.Simple | |
main = defaultMain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
packages: | |
- . | |
resolver: lts-3.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment