-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHaskellExperiments.cabal
More file actions
32 lines (29 loc) · 927 Bytes
/
HaskellExperiments.cabal
File metadata and controls
32 lines (29 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cabal-version: 2.4
-- Initial package description 'HaskellExperiments.cabal' generated by
-- 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: HaskellExperiments
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
license: NONE
author: Min Hiew
maintainer: mhiew@nudgerewards.com
-- copyright:
-- category:
extra-source-files: README.md
library
exposed-modules:
Homework1
build-depends: base ^>=4.14.1.0
hs-source-dirs: homework
default-language: Haskell2010
test-suite HaskellExperiments-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: homework1test.hs
build-depends: base ^>=4.14.1.0,
HUnit,
HaskellExperiments