conways-game-of-life/conways-game-of-life.cabal

17 lines
468 B
Plaintext
Raw Normal View History

2021-12-11 15:13:39 -05:00
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
2021-12-20 15:25:54 -05:00
main-is: Main.hs
other-modules: GOL.Rule,
GOL.Space,
GOL.Engine
build-depends: base,
comonad,
Yampa,
adjunctions