Life/Program.cs
neogeek23 92fa0de002 Add files via upload
This is this starting of the layout of Conway's Life game.  I'm trying to make it so that having different states is as easy as just adding them to State.cs and that any number of dimensions should be handled quickly.  Visualizing higher dimensional life games might be tricky, but this should be able to determine it.
2017-09-29 02:22:00 -05:00

14 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Game_Of_Life___Console{
class Program{
static void Main(string[] args){
Console.WriteLine("Hello World!");
Console.ReadKey();
}
}
}