splitted print class into printUnfromated and printFormated.

This commit is contained in:
Leonardo Brandenberger
2021-11-05 15:08:25 +01:00
parent 9afb8458c3
commit 9378bf259a
6 changed files with 67 additions and 54 deletions
+5 -2
View File
@@ -17,8 +17,9 @@ class TextOutputTest {
textOutput.formatFix(9);
//textOutput.formatRaw();
text = new ArrayList<>();
text.add("123 45678 ");
text.add("123456789");
text.add("1234 12345");
text.add("1234");
text.add("12 12 12");
text.add("TextTextTextTextTextTextTextTextTextTextTextTextTextText TextTextTextTextTextTextTextTextTextTextTextText TextTextText");
}
@@ -27,4 +28,6 @@ class TextOutputTest {
textOutput.print(text);
}
}