1
0
forked from leto/LeMA

Delete main.cpp

This commit is contained in:
leto 2024-12-27 23:40:15 +01:00
parent e8f843a420
commit 2d2d6afcfb

View File

@ -1,13 +0,0 @@
#include "matrices.h"
int main() {
Matrix a(3, 3);
a.Print("A");
a = a.Add(0.5F);
a.Print("A + 0.5F");
return 0;
}