Draw a pixel: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 633:
sl.Line.ForeColor.RGB = RGB(Red:=255, Green:=0, Blue:=0)
End Sub</lang>
 
=={{header|ZX Spectrum Basic}}==
The ZX Spectrum screen is only 256x224 (unless you're running one of the games like Starion or Dark Star which used scary machine code timing tricks to draw on the border), meaning the window requirement is out, but the pixel is easy:
<lang zxbasic>PLOT INK 2;100,100</lang>
77

edits