Draw a pixel: Difference between revisions

Line 1,859:
This is all that's required to plot a pixel on the Raspberry Pi version of XPL0. It can do tens of millions of them per second. (FB = Frame Buffer.)
<lang XPL0>[SetFB(320, 240, 24); Point(100, 100, $FF0000)]</lang>
 
=={{header|Yabasic}}==
<lang Yabasic>open window 320, 240
color 255, 0, 0
dot 100, 100</lang>
 
=={{header|ZX Spectrum Basic}}==
672

edits