Initial Commit

This commit is contained in:
ctsk
2023-08-27 22:30:00 +02:00
commit 1d3e647680
9 changed files with 2412 additions and 0 deletions

38
Y2022.cabal Normal file
View File

@@ -0,0 +1,38 @@
cabal-version: 3.0
name: Y2022
version: 0.1.0.0
synopsis: Solutions to Advent of Code 2022
-- license: NONE
author: ctsk
maintainer: bugs@ctsk.xyz
build-type: Simple
source-repository head
type: git
location: https://github.com/ctsk/aoc-2022
common warnings
ghc-options: -Wall
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Lib
Print
Days.D01
Parse
Util
build-depends:
base ^>=4.18.0.0
, megaparsec ^>=9.4.0
, text
executable Y2022
import: warnings
main-is: Main.hs
build-depends:
Y2022
, base ^>=4.18.0.0
hs-source-dirs: app
default-language: Haskell2010