55_Life/csharp/README.md
An implementation of John Conway's popular cellular automaton, also know as Conway's Game of Life. The original source was downloaded from Vintage Basic.
Ported by Dyego Alekssander Maas.
This program requires you to install .NET 6 SDK. After installed, you just need to run dotnet run from this directory in the terminal.
You can find more about Conway's Game of Life on this page of the Cornell Math Explorers' Club, alongside many examples of patterns you can try.
Optionally, you can run this program with the --wait 1000 argument, the number being the time in milliseconds
that the application will pause between each iteration. This is enables you to watch the simulation unfolding. By default, there is no pause between iterations.
The complete command would be dotnet run --wait 1000.
Once running the game, you are expected to enter a pattern. This pattern consists of multiple lines of text with either spaces or some character, usually an asterisk (*).
Spaces represent empty cells. Asterisks represent alive cells.
After entering the pattern, you need to enter the word "DONE". It is not case sensitive. An example of pattern would be:
*
***
DONE
*
***
*
***
**
**
*
*
*
This one is known as glider:
***
*
*
Original source downloaded from Vintage Basic
Conversion to Microsoft C#