aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2023-01-21 00:38:43 +0300
committereug-vs <eugene@eug-vs.xyz>2023-01-21 00:38:43 +0300
commit0a890b42e8b701feed27faee4b0caf601f5bb258 (patch)
tree25726e47382cda8637cce9834916e5a9e8f8a2f4 /src/main.rs
parent3284607b0461e4bd4386b324f8bdf63835ed22c9 (diff)
downloadchessnost-0a890b42e8b701feed27faee4b0caf601f5bb258.tar.gz
refactor: do not wrap Bitboard into struct
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs
index e0d9912..3555c81 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,10 +1,5 @@
mod bitboard;
-use bitboard::*;
fn main() {
- const bb: Bitboard = Bitboard(127);
println!("Hello, world!");
- println!("{}", bb);
- println!("{}", bb.0);
- println!("{}", bb.pop_count());
}