diff options
author | Andreas Grois <andi@grois.info> | 2022-12-29 21:20:09 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2022-12-29 21:20:09 +0100 |
commit | 628d1c202c27fc240abbaac53f246a5939f28ab5 (patch) | |
tree | 02eade2aeb1a2286bfdd0a3215159f3425f15931 /Day9/Day9.cabal | |
parent | eb4cb51319431feacd1e491db6d7466c2752c2ec (diff) |
Day 9 Part 1
Diffstat (limited to 'Day9/Day9.cabal')
-rw-r--r-- | Day9/Day9.cabal | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Day9/Day9.cabal b/Day9/Day9.cabal new file mode 100644 index 0000000..d4161a1 --- /dev/null +++ b/Day9/Day9.cabal @@ -0,0 +1,35 @@ +cabal-version: 2.4 +name: Day9 +version: 0.1.0.0 + +-- A short (one-line) description of the package. +-- synopsis: + +-- A longer description of the package. +-- description: + +-- A URL where users can report bugs. +-- bug-reports: + +-- The license under which the package is released. +-- license: +author: Andreas Grois +maintainer: andi@grois.info + +-- A copyright notice. +-- copyright: +-- category: +extra-source-files: CHANGELOG.md + +executable Day9 + main-is: Main.hs + + -- Modules included in this executable, other than Main. + -- other-modules: + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: base ^>=4.16.3.0, + containers + hs-source-dirs: app + default-language: Haskell2010 |