RosettaCodeData/Task/Simple-windowed-application/Tcl/simple-windowed-application.tcl
2023-07-01 13:44:08 -04:00

7 lines
206 B
Tcl

package require Tk
pack [label .l -text "There have been no clicks yet"]
set count 0
pack [button .b -text "click me" -command upd]
proc upd {} {
.l configure -text "Number of clicks: [incr ::count]"
}