Summary
Writes text to the debug output stream.
Syntax
print(multiple)Parameters
Multiple : Any number of parameters of any type.
Description
This function accepts one or more parameters of any valid Lua type, and writes the values to an internal debug buffer. This is intented for debugging purposes. The content of the buffer is shown in the Edit Plugin screen, after the script execution.
Examples
print ( 'PingResults' , ping('localhost') )
PingResults, true, table 0x00F29428{packets_received=4; max_time=0; error='';
stddev=0; avg_time=0; packets_transmitted=4; packet_size=32; min_time=0}