Draw a pixel: Difference between revisions

PascalABC.NET
(Frink)
(PascalABC.NET)
(One intermediate revision by one other user not shown)
Line 1,627:
(glEnd)))
</syntaxhighlight>
 
=={{header|PascalABC.NET}}==
<syntaxhighlight lang="pascal">
uses GraphWPF;
 
begin
Window.SetSize(320,240);
SetPixel(100,100,Colors.Red);
end.
</syntaxhighlight>
 
 
=={{header|Perl}}==
Line 2,192 ⟶ 2,203:
PLOT 100,100
END</syntaxhighlight>
 
=={{header|Uiua}}==
{{works with|Uiua|0.10.0}}
Run it using Uiua Pad to see the teeny-weeny dot.
<syntaxhighlight lang="Uiua">
↯240_320_3 0
⍜(⊡[100 100]|[1 0 0]◌)
</syntaxhighlight>
 
=={{header|Uxntal}}==
222

edits