From 96c05efa3b8506972f14563ec4b32dedc88cde7a Mon Sep 17 00:00:00 2001 From: Coding with Tom <146443103+hcsalmon1@users.noreply.github.com> Date: Mon, 20 Jan 2025 16:52:02 +0000 Subject: [PATCH] Create main.cs --- C#/Cleaner and slower version/main.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 C#/Cleaner and slower version/main.cs diff --git a/C#/Cleaner and slower version/main.cs b/C#/Cleaner and slower version/main.cs new file mode 100644 index 0000000..1331122 --- /dev/null +++ b/C#/Cleaner and slower version/main.cs @@ -0,0 +1,20 @@ +using System; + +namespace CEngineCopy +{ + public class Program + { + + + static void Main() + { + Board.SetStartingPosition(); + Debugging.PrintBoardGlobal(); + Console.ReadLine(); + Perft_Func.RunPerftFunctions(6); + //Perft_Debug.RunPerftFunctionsDebug(6); + } + + + } +}