learning project in rust - implementing game of life in the teminal
Find a file
2019-06-27 00:16:46 +03:00
src moved readme to root 2019-06-27 00:13:07 +03:00
.gitignore drawing screen, populating a hash of cells, running asynchronously 2019-06-15 21:22:46 +03:00
Cargo.toml drawing screen, populating a hash of cells, running asynchronously 2019-06-15 21:22:46 +03:00
LICENSE Create LICENSE 2019-06-27 00:16:46 +03:00
README.md moved readme to root 2019-06-27 00:13:07 +03:00

  • game of life

a conways game of life implemented with termion. a learning rust project. but still pretty cool in case you ever want to run game of life in a terminal. how to:

select left click to make a cell alive, right click to kill it. p for pause c to continue s to step r to reset the grid

todo: handle borders properly, currently it crashes if a live cell gets to a negative location.