how do you use System.out.println? I have it in my code, but where does it print
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);
...
GreenfootImage textImage = new GreenfootImage("First line\n"
+ "Second line\n"
+ "Third line", 12, Color.WHITE, Color.BLACK);