Draw a pixel: Difference between revisions

Content added Content deleted
(Add Factor example)
m (GB BASIC has been added.)
Line 111:
Sleep
End</lang>
 
=={{Header|GB BASIC}}==
The resolution of the Game Boy's screen is only 160×144, so the window requirement is out, but the pixel is easy. Also, GB BASIC doesn't support displaying the color red, so the Game Boy's grayscale equivalent, dark gray, is used instead:
<lang GB BASIC>10 COLOR 1
20 POINT 100,100</lang>
 
=={{header|Go}}==