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

8 lines
112 B
C++
Raw Normal View History

2022-03-11 12:27:54 +00:00
#include "../inc/matrix.hpp"
#include <stdio.h>
int main()
{
2022-03-11 12:27:54 +00:00
Matrix<int> a(2,2);
printf("哈哈了");
}