CHR$ Example10 CLEAR SCREEN
20 DISPLAY FUNCTIONS ON !Make sure you can see all the characters.
30 FOR Loop=0 TO 255
40 DISP Loop;
50 PRINT CHR$(Loop); !Display all the different characters.
60 NEXT Loop
70 PRINT CHR$(128)
80 PRINT CHR$(136)
90 END
|