RosettaCodeData/Task/Draw-a-pixel/Tcl/draw-a-pixel.tcl
2023-07-01 13:44:08 -04:00

5 lines
163 B
Tcl

package require Tcl 8.5
package require Tk
pack [canvas .c -width 320 -height 240 -bg #fff] -anchor nw
.c create rectangle 100 100 100 100 -fill #f00 -outline ""