Description
Stops the execution of command for a certain time.
Synopsis
after msecOption
Specify the time during which the command sleeps in milliseconds (1/1000 seconds).
Example
The following example executes loop ten times at 1-sec intervals.
set i 0
while {$i < 10} {
incr i
after 1000
}