Initial commit

This commit is contained in:
KäseToatz
2024-09-25 20:04:01 +02:00
commit f33d84f3f4
5 changed files with 106 additions and 0 deletions

11
Program.cs Normal file
View File

@ -0,0 +1,11 @@
namespace Matrix
{
public class Program
{
static void Main()
{
Matrix matrix = new();
matrix.Start();
}
}
}