https://github.com/adimit/wasm-tutorial
Code roughly follows the Rust/Wasm tutorial
https://github.com/adimit/wasm-tutorial
Last synced: 7 months ago
JSON representation
Code roughly follows the Rust/Wasm tutorial
- Host: GitHub
- URL: https://github.com/adimit/wasm-tutorial
- Owner: adimit
- License: apache-2.0
- Created: 2020-07-30T17:36:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T11:48:56.000Z (over 3 years ago)
- Last Synced: 2025-02-15T16:42:32.507Z (over 1 year ago)
- Language: Rust
- Size: 584 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE_APACHE
Awesome Lists containing this project
README
# Game of Life 🦀
Implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) in [Rust](https://www.rust-lang.org/) and compiled to [WASM](https://www.rust-lang.org/what/wasm). Deployed version [available here](https://aleks.bg/life/).
Roughly follows the Tutorial laid out in the [Rust & Wasm](https://rustwasm.github.io/docs/book/game-of-life/implementing.html) book; especially the Rust part does not follow it closely.