FBPL Command Reference

Table Of Contents
125
10.3 CHR$()
Description
Return the character with the specified ASCII code.
Syntax
CHR$(n)
Parameter
Description
n
ASCII code
Example
Sample code
DOWNLOAD "TEST.BAS"
SIZE 4,4
GAP 0,0
DIRECTION 1
SET TEAR ON
CLS
A=75
WORD$=CHR$(A)
TEXT 100,100, "3",0,1,1,WORD$
PRINT 1
EOP
RUN "TEST.BAS"
Result
See Also
DOWNLOAD, EOP, STR$(), ASC$()