7 lines
112 B
C++
7 lines
112 B
C++
#include "../inc/matrix.hpp"
|
|
#include <stdio.h>
|
|
int main()
|
|
{
|
|
Matrix<int> a(2,2);
|
|
printf("哈哈了");
|
|
}
|