RosettaCodeData/Task/Draw-a-pixel/Tcl/draw-a-pixel.tcl

6 lines
163 B
Tcl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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 ""