12 lines
216 B
Java
12 lines
216 B
Java
|
public class TestMatrix {
|
||
|
public static void main(String[] args) {
|
||
|
test1("");
|
||
|
}
|
||
|
|
||
|
public static void test1(String file) {
|
||
|
Matrix matrix = new Matrix(file);
|
||
|
|
||
|
matrix.print();
|
||
|
}
|
||
|
}
|