Collection of Conway's game of life implementations in languages I know
- For given array of boolean(or bit), returns next array (ref: Conway's game of life)
- Draw the visualized result onto Web using Canvas and WebGL(2d)
- At least 60 animation frames per sec
- Small and clean code as possible
- If a result is JavaScript, it should be loadable (bundled by Webpack as needed)
- If a language is interoperable to JavaScript, it should follow rule#1
- If it's native language, it should be compiled to WebAssembly then follows rule#1
- if it doesn't support JavaScript or WebAssembly, any reason to use? 😏