Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pyro2927/game-of-life
Conway's Game of Life in Ruby
https://github.com/pyro2927/game-of-life
Last synced: about 17 hours ago
JSON representation
Conway's Game of Life in Ruby
- Host: GitHub
- URL: https://github.com/pyro2927/game-of-life
- Owner: pyro2927
- License: mit
- Created: 2013-12-15T19:38:37.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-15T19:50:56.000Z (almost 11 years ago)
- Last Synced: 2023-04-12T16:22:18.681Z (over 1 year ago)
- Language: Ruby
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Game-of-Life
============Conway's Game of Life in Ruby
Running `example.rb` starts with a block and a glider, which then run for 50 iterations. Each iteration is printed to the screen, and ends with this:
```
| | | | | | | | | | | | | | | | | | | |
| |X|X| | | | | | | | | | | | | | | | |
| |X|X| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |X| | | |
| | | | | | | | | | | | | | | | |X|X| |
| | | | | | | | | | | | | | | |X|X| | |
| | | | | | | | | | | | | | | | | | | |
```