rewrite progress 2

This commit is contained in:
2025-02-17 11:54:06 -05:00
parent 127c9874da
commit 87f58e5e40
4 changed files with 88 additions and 64 deletions

View File

@@ -118,6 +118,12 @@ impl fmt::Display for Board {
}
}
impl fmt::Debug for Board {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self)
}
}
impl Board {
/// Create a new empty board
pub const fn new() -> Self {