function char

Returns the ASCII character which number is N. N is truncated to the range 0...255.

Syntax
result = char(N)

Arguments
N:   An integer number.


Examples
To print out the ASCII character set, type:
   for (i = 32; i < 256; i++) print char(i)