From 19c17b8bf39d488448412819042b58fb3679c3fc Mon Sep 17 00:00:00 2001 From: Coding with Tom <146443103+hcsalmon1@users.noreply.github.com> Date: Sun, 12 Jan 2025 21:43:30 +0000 Subject: [PATCH] Create chessengine.odin --- Odin/chessengine.odin | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Odin/chessengine.odin diff --git a/Odin/chessengine.odin b/Odin/chessengine.odin new file mode 100644 index 0000000..1fbbaef --- /dev/null +++ b/Odin/chessengine.odin @@ -0,0 +1,8 @@ +package main + +main :: proc() { + + LoadFen(FEN_STARTING_POSITION) + PrintBoard() + RunPerftInline(6) +}