Returns the character for a specified ASCII value.
function ibec_Chr(X : integer): string;
ibec_Chr returns the character with the ordinal value(ASCII value) of the byte-type expression, X.
execute IBEBlock returns (cout varchar(1)) as begin i = 0; while (i < 256) do begin cout = ibec_Chr(i); i = i + 1; suspend; end end