print(<expr>)
<expr>
to the console. err(<expr>)
<expr>
to the console. If <expr>
is a variable, the variable name is printed as well. Very useful for debugging. println(<expr>)
<expr>
to the console and adds a newline character to the end of the text. println()
clearconsole()
assert(<bool>,<expr>)
if(!<bool>,println(<expr>))
. It can be used to test wheter a condition is met and otherwise generate an error message. assert(isinteger(k),"k is not an integer");
message(<expr>)
<expr>
in the status line of the application, or in the status line of the browser for Cinderella applets.
Page last modified on Friday 02 of September, 2011 [16:42:25 UTC].
The original document is available at
http://doc.cinderella.de/tiki-index.php?page=Console%20Output