RosettaCodeData/Task/Simple-windowed-application/Tcl/simple-windowed-application.tcl

8 lines
206 B
Tcl
Raw Permalink Normal View History

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