diff --git a/Main.hs b/Main.hs new file mode 100644 index 0000000..6848e70 --- /dev/null +++ b/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "Hello" \ No newline at end of file diff --git a/conways-game-of-life.cabal b/conways-game-of-life.cabal new file mode 100644 index 0000000..165b553 --- /dev/null +++ b/conways-game-of-life.cabal @@ -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 \ No newline at end of file