An open API service indexing awesome lists of open source software.

https://github.com/pickfire/life-hs

Haskell Game of Life
https://github.com/pickfire/life-hs

game-of-life haskell

Last synced: 29 days ago
JSON representation

Haskell Game of Life

Awesome Lists containing this project

README

        

Haskell Game of Life
====================

Simple Game of Life simulation implemented while learning Haskell.

Usage
-----
Compiled:

$ ghc -dynamic Main.hs
$ ./Main

Interpreted:

$ runghc Main.hs

Interpreted (the long way that I did):

$ ghci Main.hs
> main

References
----------
- https://github.com/marcusbuffett/game-of-life
- https://rosettacode.org/wiki/Conway%27s_Game_of_Life#Haskell