public static void Main(string[] args)
static void Introduction()
Console.WriteLine("\t\t\t\tWelcome to NIM!\n");
Console.WriteLine(" - Each player takes their turn to remove a certain number of 'blocks' from a stack, of which there are 7.");
Console.WriteLine(" - This happens until there is only 1 'block' remaining. With the winner being the one to remove the last 'block'.\n");
Console.WriteLine("Initialising the board:\n");
static void InitialBoardSetUp()
for (int i = 1; i <= 7; i++)
Console.Write(" " + i + "\t");
for (int i = 1; i <= 7; i++)
for (int j = 1; j <= 7; j++)