Create basic package structure
This commit is contained in:
parent
8caef2e608
commit
0fa45ddd6f
4
Main.hs
Normal file
4
Main.hs
Normal file
|
@ -0,0 +1,4 @@
|
|||
module Main where
|
||||
|
||||
main :: IO ()
|
||||
main = putStrLn "Hello"
|
12
conways-game-of-life.cabal
Normal file
12
conways-game-of-life.cabal
Normal 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
|
Loading…
Reference in a new issue