| PUTBYTE | |
| Syntax | PUTBYTE number (PUTBYTE number channel) |
| Explanation | PUTBYTE writes to the output stream the
character corresponding to its ASCII input. The input
number can be from 0 through 255. PUTBYTE does not insert
a carriage return after writing its output. A channel number may be entered as a second, optional input. If present, PUTBYTE writes to that channel instead of writing to the output stream. This makes it easier to switch among multiple output streams. |
| Examples | PUTBYTE 65 A PUTBYTE 97 a PRINT [MANY SPACES] MANY SPACES TYPE "MANY REPEAT 10 [PUTBYTE 32] PR "SPACES MANY SPACES |