Small update to Console class

This commit is contained in:
Ziver Koc 2015-10-20 15:57:17 +00:00
parent a04041c07c
commit e9715298b6
2 changed files with 7 additions and 7 deletions

View file

@ -31,12 +31,13 @@ import java.io.InputStreamReader;
public class ConsoleTest {
public static void main(String[] args) throws IOException{
new Console("Console Test");
Console terminal = new Console("Console Test");
terminal.enableTray(true);
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
while(true){
System.out.println("hello= "+in.readLine());
for(int i=0; i<20 ;i++){
for(int i=0; i<2 ;i++){
System.out.println(i+"Hello World!!!sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss");
System.err.println(i+"Hello World!!!sssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss");
try {