This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/SoftwareDesign/Code/ex01/main.cpp
2022-03-11 20:27:54 +08:00

8 lines
112 B
C++

#include "../inc/matrix.hpp"
#include <stdio.h>
int main()
{
Matrix<int> a(2,2);
printf("哈哈了");
}