Link Search Menu Expand Document

print

Explanation Display debug messages in Biz / Designer. Ignored except during debugging on Biz / Designer.
It has the same function as the debugMessage function.
Call format print( msg_1 [, msg_2 [, msg_3 ... ] ] )
Return value None
Arguments Object msg_n Specify the object to display.
The object is converted to a string and displayed.
To start a new line at the end of a line, specify "¥ n" at the end.
Exception None
Example of use
var d = 100;
var s = "sample";
print (d, s, "¥ n");
Related item debugMessage function.