RosettaCodeData/Task/Draw-a-pixel/Icon/draw-a-pixel.icon

10 lines
142 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#
# draw-pixel.icn
#
procedure main()
&window := open("pixel", "g", "size=320,240")
Fg("#ff0000")
DrawPoint(100, 100)
Event()
end