Draw a pixel: Difference between revisions

Draw a pixel en True BASIC
m (→‎{{header|Phix}}: added syntax colouring, marked p2js compatible)
(Draw a pixel en True BASIC)
Line 1,812:
pack [canvas .c -width 320 -height 240 -bg #fff] -anchor nw
.c create rectangle 100 100 100 100 -fill #f00 -outline ""</lang>
 
=={{header|True BASIC}}==
<lang truebasic>SET WINDOW 0, 320, 0, 240
SET COLOR 4
PLOT 100,100
END</lang>
 
=={{header|VBA}}==
2,130

edits