Guest User

Untitled

a guest
May 2nd, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.27 KB | None | 0 0
  1. eval {
  2.    
  3.  
  4.     puts [clock format [clock seconds]]
  5.  
  6.     after 100 {
  7.         set ::dupa 0
  8.         after 5000 {set ::dupa 1}
  9.         vwait ::dupa
  10.     }
  11.     set ::apud 0
  12.     after 1500 {set ::apud 1}
  13.     vwait ::apud
  14.  
  15.     puts [clock format [clock seconds]]
  16. }
Add Comment
Please, Sign In to add comment