Game of Life Applet

Rules:

  • There's a matrix of cells, which can be dead or alive
  • A cell comes to life when it has 3 living neighbours
  • A cell dies when is has less than 2 or more than 3 neighbours

  • Source code: GameOfLife.java

    I wrote this program as an introduction into Java programming and applets in 1998. Have fun with it. Maybe you'll even learn something useful.