Guest User

Untitled

a guest
May 2nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.17 KB | None | 0 0
  1. proc vwaitTest {i} {
  2.     incr i
  3.     puts "I=$i"
  4.     after idle vwaitTest $i
  5.     vwait ::var$i
  6. }
  7.  
  8. interp recursionlimit {} 20
  9. after idle vwaitTest 0
  10.  
  11. vwait forever
Add Comment
Please, Sign In to add comment