aboutsummaryrefslogtreecommitdiff
path: root/src/bitboard.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bitboard.rs')
-rw-r--r--src/bitboard.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bitboard.rs b/src/bitboard.rs
index 646006c..f43d28e 100644
--- a/src/bitboard.rs
+++ b/src/bitboard.rs
@@ -5,6 +5,7 @@ pub type Bitboard = u64;
/// (i.e the board is actually flipped along X)
#[allow(dead_code)]
pub fn print(bb: Bitboard) {
+ println!();
for index in 0..64 {
print!("{}", if bb >> index & 1 == 1 { "1" } else { "." });
if (index + 1) % 8 == 0 {