first commit

This commit is contained in:
thornAvery 2021-12-01 02:56:43 +00:00
commit 1cb9558160
9 changed files with 158 additions and 0 deletions

19
code/aoc2021.cabal Normal file
View file

@ -0,0 +1,19 @@
cabal-version: 1.12
name: aoc2021
version: 0.0.0.1
license: MIT
build-type: Simple
synopsis: aoc2021 problem 01
description: aoc2021 problem 01
author: Thorn Avery
maintainer: ta@p7.co.nz
executable aoc2021-01
main-is: Main.hs
ghc-options: -O2 -Wall
hs-source-dirs: src/01
build-depends: base
default-language: Haskell2010

4
code/src/01/Main.hs Normal file
View file

@ -0,0 +1,4 @@
module Main where
main :: IO ()
main = putStrLn "Hello World 01!"