Create basic package structure

This commit is contained in:
Kiana Sheibani 2021-12-11 15:13:39 -05:00
parent 8caef2e608
commit 0fa45ddd6f
2 changed files with 16 additions and 0 deletions

4
Main.hs Normal file
View file

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

View file

@ -0,0 +1,12 @@
name: conways-game-of-life
version: 0.1
synopsis: A simple implementation of Conway's Game of Life using comonads
author: Kiana Sheibani
license: MIT
build-type: Simple
cabal-version: >= 1.8
executable main
build-depends: base,
comonad
main-is: Main.hs