parent
4e0e714851
commit
850d54ad7e
@ -0,0 +1,18 @@
|
||||
public class Out {
|
||||
static String[] output = new String[50000];
|
||||
static int line = 0;
|
||||
|
||||
public static void println(String string) {
|
||||
output[line++] = string;
|
||||
}
|
||||
|
||||
public static void println() {
|
||||
output[line++] = "";
|
||||
}
|
||||
|
||||
public static void toConsole() {
|
||||
for (int i = 0; i < line; i++) {
|
||||
System.out.println(output[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue