print()

Outputs text or values to the output.

Syntax

print(value1, value2, ...)

Parameters

Parameter Type Description
value Number/String One or more values to print.

Return Value

Examples

Print a number

print(42);

Print a string

print("Hello, World!");

Print multiple values

print("Result:", 3.14);

See also

print
clear
debug