$FUNCNAME$
  CHR()
$CATEGORY$
  STRING,NUMERIC,KEYBOARD/MOUSE
$SUMMARY$
   Convert an ASCII code to a character value
$LANG_RU$
     ASCII    .
$SYNTAX$
     CHR(<nCode>) --> cChar
$LANG_RU$
     CHR(< ASCII>) --> 
$ARGUMENTS$
     <nCode> is an ASCII code in the range of zero to 255.
$LANG_RU$
     < ASCII> -  ASCII    0  255.
$RETURNS$
     CHR() returns a single character value whose ASCII code is specified by
     <nCode>.
$LANG_RU$
     CHR()  ,    < ASCII>.
$DESCRIPTION$

     CHR() is a numeric conversion function that converts an ASCII code to a
     character.  It is the inverse of ASC().  CHR() serves a number of common
     tasks including:

       Sending control codes and graphics characters to the screen or
	printer

       Ringing the bell

       Converting INKEY() return values to characters

       Stuffing the keyboard buffer


$LANG_RU$

     CHR() -   ,   
     ASCII  .      ASC(). 
           , 
     :

              
       .

       .

       ,   INKEY(),  .

        .


$EXAMPLES$

       These examples illustrate CHR() with various arguments:

	? CHR(72)                    // Result: H
	? CHR(ASC("A") + 32)         // Result: a
	? CHR(7)                     // Result: bell sounds

       These lines of code show the difference between a null string
	and the null character:

	? LEN("")                   // Result: 0
	? LEN(CHR(0))               // Result: 1


$LANG_RU$

           CHR()  
       :

       ? CHR(72)                 // : H
       ? CHR(ASC("A") + 32)      // : a
       ? CHR(7)                  // :  

              :

       ? LEN("")                 // : 0
       ? LEN(CHR(0))             // : 1


$SEEALSO$
  ASC(),INKEY()
$END$
