Click to input a cell or delete it Space to continue to the next generation (can hold)
Conway's Game of Life is an automaton (or something like that) in which cells evolve per generation over simple rules Each cell (alive or not) checks around its 8 surrounding cells The Rules - If a living cell has fewer than 2 living neighbours, it dies If a living cell has more than 3 living neighbours, it dies If a living cell has 2 or 3 living neighbours, it survives (til next generation) If a nonliving cell has exactly 3 living neighbours, it revives Over these simple rules, it can create multiple complex shapes that can survive with the help of others and even move :D For the purpose of this project, there are wall limits :/ Yes, I'm bored, so I researched something random, found this, so why not recreate it