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