Files
CS3210/Lab3/main.cpp
2022-03-22 11:49:18 -05:00

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;
}