No description
  • Java 62.1%
  • Rust 21.7%
  • JavaScript 13.2%
  • HTML 3%
Find a file
2022-11-29 10:15:21 -08:00
.vscode Customizeable size at runtime 2019-02-04 19:07:47 -08:00
java moved java to seperate folder, init for multithreaded 2020-12-30 23:28:27 -08:00
rust-wasm Merge pull request #11 from Solidsilver/dependabot/npm_and_yarn/rust-wasm/www/minimist-and-minimist-and-mkdirp-1.2.7 2022-11-29 10:15:21 -08:00
.gitignore added basic rust-wasm setup 2021-04-26 15:24:30 -07:00
README.md Update README.md 2021-04-26 12:05:37 -07:00

game-of-life

A recreation of Conway's Game of Life

Java:

This contains two versions: A command line version, and a GUI version. The cmdline only works properly on unix systems (as it makes use of the newline character sequence) and is fairly laggy on grid sizes over 100^2.

  • Run the cmdline version by compiling and running the GameOfLife.java file.

The GUI version is much faster and can handle larger grids, and supports scrolling. However, the scrolling is a bit odd at the moment.

  • Run the GUI version by compiling all files, then running GOLUI.java