This site requires JavaScript, please enable it in your browser!
Greenfoot back
Xolkiyr
Xolkiyr wrote ...

2018/2/15

Is there any way to display text outside of the world in Greenfoot?

Xolkiyr Xolkiyr

2018/2/15

#
Like basically some debug type stuff.
Xolkiyr Xolkiyr

2018/2/15

#
Nevermind, figured it out.
Xolkiyr Xolkiyr

2018/2/16

#
For anyone who may wish to know, you put this in your code where you want to output to the console:
System.out.print( WHATEVER-YOU-WANT-TO-SEE );
danpost danpost

2018/2/16

#
You could also force the user to respond to any text output by using the Greenfoot.ask(String prompt) method:
Greenfoot.ask("Your statement here.");
You need to login to post a reply.