From c6bb7672a458c62c430609b1adb34a8eae7fce83 Mon Sep 17 00:00:00 2001 From: Shivesh Mandalia Date: Sat, 14 Jan 2023 14:11:21 +0000 Subject: Initial commit --- day02/app/Main.hs | 4 ++++ day02/day02.cabal | 22 ++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 day02/app/Main.hs create mode 100644 day02/day02.cabal (limited to 'day02') 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 -- cgit v1.2.3