1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:45:08 +00:00
serenity/Base/usr/share/man/man6/GameOfLife.md
Brian Gianforcaro 64dfb3a28f Base: Add icons to man pages for GUI applications
Differentiate GUI applications in man pages with icons.

This is the revert of the revert commit, now that the icon processing
was fixed in 89c0f84a28.
Revert: dae298e9df
Original: 74238d0aba

Co-authored-by: electrikmilk <brandonjordan124@gmail.com>
2022-01-17 03:38:54 -08:00

640 B

Name

Icon GameOfLife

Synopsis

$ GameOfLife

Description

GameOfLife is an implementation of John Conway's Game of Life.

The game is a cellular automaton where each cell is either dead (grey) or alive (yellow) and will change state in the next tick if any of the following rules are fulfilled:

  • An alive cell will die by underpopulation if it has fewer than two neighbors.
  • An alive cell will die by overpopulation if it has more than three neighbors.
  • A dead cell will come alive by reproduction if it has exactly three neighbors.

Otherwise, it will keep its old state.