From 76310400e8d6fb758e849115db74890f99175496 Mon Sep 17 00:00:00 2001
From: Karma Riuk <riukkarma@gmail.com>
Date: Mon, 3 Feb 2025 23:41:27 +0100
Subject: [PATCH] added empty line before move counts to ease copying

---
 cpp/src/stickfosh.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/src/stickfosh.cpp b/cpp/src/stickfosh.cpp
index acfbf51..dece87a 100644
--- a/cpp/src/stickfosh.cpp
+++ b/cpp/src/stickfosh.cpp
@@ -86,6 +86,6 @@ void perft(std::string pos) {
         std::cout << "positions Time: " << elapsed << " milliseconds"
                   << std::endl;
         if (moves != expected_n_moves)
-            std::cout << res.str();
+            std::cout << std::endl << res.str();
     }
 }