Add basic main CLI

I'm a visual type of person, I like to watch things evolve on the
command line. So I've added a basic main.rs to the project to watch
things on the command line as they evolve.
This commit is contained in:
Greg Hellings
2024-10-16 10:04:55 -05:00
parent d431a9378a
commit 7d9383ad1e
4 changed files with 57 additions and 2 deletions
+6 -2
View File
@@ -1,2 +1,6 @@
pub mod cell;
pub mod board;
mod cell;
mod board;
pub use board::Board;
pub use board::Point;
pub use cell::CellValue;