[bitboard] Implement a Square type; fix all the build issues after adding a mod line to lib.rs

This commit is contained in:
Eryn Wells 2023-12-20 11:45:12 -08:00
parent d080ddc735
commit ab55a7994c
4 changed files with 175 additions and 22 deletions

View file

@ -1,10 +1,3 @@
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}
mod bitboard;
mod position;
mod square;