11 lines
170 B
C#
11 lines
170 B
C#
namespace Matrix
|
|
{
|
|
public class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
Matrix matrix = new();
|
|
matrix.Start();
|
|
}
|
|
}
|
|
} |