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