blob: e9517c3ac1111929bb63d3836f165b486d235136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Game of life
The code is written in Rust and is compiled to WebAssembly.
[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) is used to interact
with JavaScript.
See [the wikipedia page](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)
to get more information about game of life.
## Live
[https://guyonvarch.gitlab.io/game-of-life](https://guyonvarch.gitlab.io/game-of-life)
## Getting started
```bash
nix-shell --run ./watch
```
## Deploy
```bash
nix-shell --run ./deploy
```
|