FutureBasic Logo

<<    Index    >> FutureBasic

chr$   function



Syntax
character$ = chr$( expr )

Description
Returns a 1-character string consisting of the character whose ASCII code is given by expr mod 256.

Example
print chr$( 65 )chr$( 66 )chr$( 67 )
program output:
ABC

See also
asc; string$; Appendix F - ASCII Character Codes