Color of a screen pixel: Difference between revisions

m
(Added BBC BASIC)
Line 20:
=={{header|BBC BASIC}}==
In [[BBC BASIC for Windows]] you can read either the 'logical colour' (palette index) or the 'true colour' (24-bit RGB value).
<lang BBC BASICbbcbasic> palette_index% = POINT(x%, y%)
RGB24b_colour% = TINT(x%, y%)</lang>