/** * @file main.cpp * @author Trevor Barnes (barnestr@msoe.edu) * @brief * @version 1.0 * @date 2022-03-29 * * @copyright Copyright (c) 2022 * */ #include #include "matrix.h" using namespace std; int main() { Matrix m1(2,2); // add more tests return 0; }