×
Menu
Index

CHR Subroutine

 
Usage:
s = CHR(n)
 
Description:
The CHR subroutine returns a string with a single character, which has the ASCII value of the number n.
 
Example:
sub main()
   // Print "A"
   printl(CHR(65))
end sub