Writing Messages to Standard Output
Two JavaScript functions are provided for writing messages to the standard output of the currently executing process.
The print function does not write a line feed character and so can be used to write multiple messages that will eventually be output to a single line.
The following code snippet provides an example of using the print and println functions.
Example of using print and println
print('hello ');
println('world!');
The above statements will result in the output of a single line of text: "hello world!".
The print functions are invoked during evaluation of a RushScript source file. They are not executed as part of a DataFlow application that is composed and executed within a RushScript program.
Last modified date: 06/14/2024