https://github.com/ryukinix/conway-rs
Conway's Game of Life implementation in Rust
https://github.com/ryukinix/conway-rs
conway game life rust
Last synced: 6 months ago
JSON representation
Conway's Game of Life implementation in Rust
- Host: GitHub
- URL: https://github.com/ryukinix/conway-rs
- Owner: ryukinix
- License: mit
- Created: 2017-04-09T19:15:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-16T16:05:29.000Z (about 8 years ago)
- Last Synced: 2024-05-30T01:56:14.708Z (over 1 year ago)
- Topics: conway, game, life, rust
- Language: Rust
- Homepage: https://lerax.me/conway-rs
- Size: 1.83 MB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/ryukinix/conway-rs)
[](https://crates.io/crates/conway-rs)
[](LICENSE)# Description
Another ~stupid~ implementation of Conways's Game of Life written in Rust language.
# Motivation
Use a more complex example than 'hello world' to learn a new language.# Usage
Shortly:
```shell
git clone https://github.com/ryukinix/conway-rs.git
cd conway-rs
cargo build --release
cargo run
```Via crates.io:
``` shell
cargo install conway-rs && ~/.cargo/bin/conway
```You need the Rust environment to build this repository. Specifically the Rust Compiler `rustc` and the Rust package manager `cargo`. You can download both on the official website of the [Rust language](https://www.rust-lang.org/en-US/) or in the official repositories of your operating system.
# Author
* [Manoel Vilela](https://www.github.com/ryukinix)# License
[MIT](LICENSE)