The Game of Life is a cellular automaton created by John Horton Conway in 1970.
It consists of a two-dimensional grid of square cells. Each square is in one of two states: "Alive" or "Dead".
Every cell interacts with its eight neighbors to determine whether it lives or dies based on the following rules:
The Simulation is a simple implementation of the above rules using WebGPU based on Google's WebGPU tutorial