Completed reading in the CSV #1

Merged
AustrianToast merged 12 commits from Feature/import_csv into dev 2023-03-17 15:31:57 +01:00
Showing only changes of commit 18db15a050 - Show all commits

12
src/TestMatrix.java Normal file
View File

@ -0,0 +1,12 @@
public class TestMatrix {
public static void main(String[] args) {
testImportCSV();
}
public static void testImportCSV() {
Matrix m = new Matrix();
m.importCSV("/home/satan/bin/graphprogram/graph.csv");
System.out.println(m);
}
}