diff options
| author | Shivesh Mandalia <mail@shivesh.org> | 2023-01-14 14:11:21 +0000 |
|---|---|---|
| committer | Shivesh Mandalia <mail@shivesh.org> | 2023-01-14 14:11:21 +0000 |
| commit | c6bb7672a458c62c430609b1adb34a8eae7fce83 (patch) | |
| tree | 0a8da9f9df1ed77e56832af70e10dcd34db7235b /day02 | |
| download | AOC_2022_haskell-c6bb7672a458c62c430609b1adb34a8eae7fce83.tar.gz AOC_2022_haskell-c6bb7672a458c62c430609b1adb34a8eae7fce83.zip | |
Initial commit
Diffstat (limited to 'day02')
| -rw-r--r-- | day02/app/Main.hs | 4 | ||||
| -rw-r--r-- | day02/day02.cabal | 22 |
2 files changed, 26 insertions, 0 deletions
diff --git a/day02/app/Main.hs b/day02/app/Main.hs new file mode 100644 index 0000000..65ae4a0 --- /dev/null +++ b/day02/app/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "Hello, Haskell!" diff --git a/day02/day02.cabal b/day02/day02.cabal new file mode 100644 index 0000000..5e52206 --- /dev/null +++ b/day02/day02.cabal @@ -0,0 +1,22 @@ +cabal-version: 2.4 +name: day02 +version: 0.1.0.0 +synopsis: + +-- A URL where users can report bugs. +-- bug-reports: +license: NONE +author: Shivesh Mandalia +maintainer: mail@shivesh.org + +executable day01 + 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.4.0 + hs-source-dirs: app + default-language: Haskell2010 |
