From 0fa45ddd6fd920012a84d8d70f6ca24246afc24a Mon Sep 17 00:00:00 2001 From: bijan-S Date: Sat, 11 Dec 2021 15:13:39 -0500 Subject: [PATCH] Create basic package structure --- Main.hs | 4 ++++ conways-game-of-life.cabal | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Main.hs create mode 100644 conways-game-of-life.cabal 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