function/CHR$                                                   function/CHR$
 
 NAME
     CHR$ -- Returns a character in the base of ASCII code
 
 ABBREVIATION
     c <shift> H

 SYNOPSIS
     CHR$(<ascii_code>)

 FUNCTION
     This function returns a string character whose ASCII code is 
     <ascii_code>.
 
 INPUTS
     <ascii_code> - character's ASCII code (0-255)
 
 RESULT
     Character corresponding the given ASCII code (string).

 EXAMPLES
     PRINT CHR$(65);CHR$(66);CHR$(67)
         ABC
 
 NOTES
     None
 
 BUGS
     None
 
 SEE ALSO
     ASC()