1
2
3
4
5
6
7
8
9
10
pub mod matrix;

#[cfg(test)]
mod tests {
    #[test]
    fn test_new_matrix() {
        let my_matrix = Matrix::new(2, 5, 0);
        println!("{:?}", my_matrix);
    }
}