diff options
author | Andreas Grois <andi@grois.info> | 2023-01-05 13:09:56 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2023-01-05 13:09:56 +0100 |
commit | b73e98202ead097348472a3ad2bed4923b5f8f67 (patch) | |
tree | 116291f20c28d0261bdcd334bd2ba918b3df1c3d /Day11/Day11.cabal | |
parent | 52c1a7a1c1dcc3d7d7609727b43c9651b68732e4 (diff) |
Day11, MonkeyBrain unfinished
Diffstat (limited to 'Day11/Day11.cabal')
-rw-r--r-- | Day11/Day11.cabal | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Day11/Day11.cabal b/Day11/Day11.cabal new file mode 100644 index 0000000..da1d855 --- /dev/null +++ b/Day11/Day11.cabal @@ -0,0 +1,34 @@ +cabal-version: 2.4 +name: Day11 +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 Day11 + main-is: Main.hs + + -- Modules included in this executable, other than Main. + other-modules: MonkeyBrain + + -- LANGUAGE extensions used by modules in this package. + -- other-extensions: + build-depends: base ^>=4.16.3.0 + hs-source-dirs: app + default-language: Haskell2010 |