fix(matrix_mult): fix package name mismatch

This commit is contained in:
Michele Sessa 2022-12-09 19:37:06 +00:00 committed by Michele
parent 6d2677e0f0
commit 96817e90fa
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ impl Mul for Matrix<T> {
Here is a program to test your function.
```rust
use matrix_mult::*;
fn main() {
let matrix: Matrix<u32> = Matrix(vec![vec![3, 6], vec![8, 0]]);
println!("{:?}", matrix.col(0));