lab 3 start

This commit is contained in:
2022-03-22 11:49:18 -05:00
parent ae7af06af6
commit 431726e6ab
7 changed files with 422 additions and 1 deletions

20
Lab3/main.cpp Normal file
View File

@@ -0,0 +1,20 @@
/**
* @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;
}