PLOT
Syntax: PLOT x, y
The PLOT command causes a single pixel specified by (x, y) to be plotted using the current colour. The current colour is changes using the SETCOLOR command.
Example
10 REM PLOTS A RED PIXEL IN TOP LEFT CORNER
20 CLS
30 SETCOLOR 255,0,0
40 PLOT 0, 0
|