**USE TURBO MODE** [IMPORTING AND EXPORTING CHARTS IS STILL IN PROGRESS] Use your mouse (or finger) to click squares in the grid (which will place and delete them). Press Space (Or If on mobile set start to 1) To start the simulation. Press Space (Or If on mobile set start to 0) (again) To stop the simulation. Press Toggle UI To set save states (which will save what is currently on the chart and will show you the chart you saved on startup) Press the right arrow key to move the simulation step by step.
The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970. It is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves. It is Turing complete and can simulate a universal constructor or any other Turing machine. Rules ———————————————— 1, Any live cell with fewer than two live neighbours dies, as if by underpopulation. 2, Any live cell with two or three live neighbours lives on to the next generation. 3, Any live cell with more than three live neighbours dies, as if by overpopulation. 4, Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.