https://github.com/boechat107/game-of-life-rust
Implementation of Conway's Game of Life in Rust
https://github.com/boechat107/game-of-life-rust
game-of-life rust toy-project
Last synced: 2 months ago
JSON representation
Implementation of Conway's Game of Life in Rust
- Host: GitHub
- URL: https://github.com/boechat107/game-of-life-rust
- Owner: boechat107
- Created: 2022-08-11T23:59:26.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-21T22:23:48.000Z (over 2 years ago)
- Last Synced: 2025-01-21T13:25:57.375Z (4 months ago)
- Topics: game-of-life, rust, toy-project
- Language: Rust
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Game of Life - Rust

A simple implementation of Conway's Game of Life in Rust.
[](https://asciinema.org/a/514433)
## Installation
Compile and run with [Cargo](https://doc.rust-lang.org/cargo/).
## Usage
The program runs in an infinite loop.
``` bash
cargo run < ./seeds/PulsarSeed.txt
```Stop it with `Ctrl-C`.
## References
* [Conway's Game of Life - Wikipedia](https://en.wikipedia.org/wiki/Conway's_Game_of_Life)
* amhndu's [implementation in Haskell](https://github.com/amhndu/life.hs)
* Elegant solution.
* It contains the original seed files of this repository.