void Print(byte value)
void Print(int8 value)
void Print(int value)
void Print(float value)
void Print(string value)
Description
Outputs the specified value to the console, log, or test output area.
The function automatically converts the value to a readable string format for display.
It is commonly used for debugging, logging test steps, or displaying runtime information.
Parameter
- value - The variable or constant to be printed, of the specified type.
Example
void main()
{
Print(true); // Outputs: true
Print(255); // Outputs: 255
Print(-128); // Outputs: -128
Print(12345); // Outputs: 12345
Print(3.14); // Outputs: 3.14
Print("Hello World"); // Outputs: Hello World
}