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
- Host: GitHub
- URL: https://github.com/pickfire/life-hs
- Owner: pickfire
- License: isc
- Created: 2018-06-04T04:03:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T04:04:34.000Z (almost 7 years ago)
- Last Synced: 2025-02-10T11:45:13.669Z (3 months ago)
- Topics: game-of-life, haskell
- Language: Haskell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
$ ./MainInterpreted:
$ runghc Main.hs
Interpreted (the long way that I did):
$ ghci Main.hs
> mainReferences
----------
- https://github.com/marcusbuffett/game-of-life
- https://rosettacode.org/wiki/Conway%27s_Game_of_Life#Haskell