6 lines
173 B
Text
6 lines
173 B
Text
' http://rosettacode.org/wiki/Draw_a_pixel
|
|
' This program can run in QBASIC, QuickBASIC, gw-BASIC (adding line numbers) and VB-DOS
|
|
SCREEN 1
|
|
COLOR , 0
|
|
PSET (100, 100), 2
|
|
END
|