rotgen/test/basic/io.cpp
2025-05-12 10:16:47 +02:00

8 lines
No EOL
122 B
C++

#include <iostream>
#include <rotgen/matrix.hpp>
int main()
{
rotgen::matrix<double,5,5> x;
std::cout << x << "\n";
}