print

Prints string to output window.

Syntax

(print,str)

Parameters

str String to be printed to output window.

Examples

(print,This is my message)

Output: This is my message


#<value> = 123.456789
(print,#<value>)

Output: 123.456789


#<value> = 123.456789
(print,#<value,2>)

Output: 123.46


#<value> = 123.456789
(print,#<value,0>)

Output: 123


#<value> = 171
(print,#<value,x>)

Output: AB


#<value> = 43981
(print,#<value,x>)

Output: ABCB

See also

clear