1// lib.rs 2 3mod matrix; 4mod operations; 5mod utility; 6mod vector; 7 8pub use matrix::Matrix; 9pub use operations::*; 10pub use vector::Vector;