diff options
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 |
