RosettaCodeData/Task/Flow-control-structures/Tcl/flow-control-structures-3.tcl

9 lines
241 B
Tcl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
package require Tk
proc update {} {
.clockface configure -text [clock format [clock seconds]]
after 1000 update ; # call yourself in a second
}
# now just create the 'clockface' and call ;update' once:
pack [label .clockface]
update