CppExperiments/SpMatrix/main.cpp
Andrea Bontempi 8a1f664443 Init
2021-10-21 15:00:01 +02:00

17 lines
297 B
C++

#include <iostream>
#include "SpMatrix.h"
int main(int argc, char **argv) {
SpMatrix<int> test = {
{1,2},
{3,4,5}
};
std::cout << "(" << test.getX() << "," << test.getY() << ")" << std::endl;
std::cout << test.getStr() << std::endl;
return 0;
}