OUT

OUT


OR Index Level PAGE
Syntax OUT num.expression
Category BASIC
Type Statement
Description The "out" statement outputs a single ASCII character derived from a numeric expression in the range 0 to 255, which indicates its corresponding position in the ASCII table.

The expression must evaluate to a decimal number. It is evaluated and adjusted (mod(expression,256 )) to a value between 0 and 255. The corresponding ASCII character is printed on the terminal screen.
Options
See Also num.expression ue0ba
Example out 7

This prints char(7) and rings the terminal bell.
Warnings
Compatibility D3 7.0 AP R83
OR Index Level PAGE