how do you use System.out.println? I have it in my code, but where does it print


1 2 3 4 5 | import java.awt.Color; /* at the top of the file */ ... GreenfootImage textImage = new GreenfootImage( "First line\nSecond line\nThird line" , 12 , Color.WHITE, Color.BLACK); ... |
1 2 3 | GreenfootImage textImage = new GreenfootImage( "First line\n" + "Second line\n" + "Third line" , 12 , Color.WHITE, Color.BLACK); |