Signature
void print(...val)
Parameters
...val : one or more values that should be output
Appends data to the current request output stream.
Use print() when you want to emit response content directly from UCE code.
Example
print("hello docs\n");
Output
hello docs