1#![allow(unused)] 2 3mod grid; 4 5use grid::{Grid, Cell}; 6 7#[cfg(test)] 8mod test { 9 use super::*; 10 #[test] 11 fn test_grid_creation() { 12 let grid = Grid::new(4, 4); 13 } 14}