Handle a signal: Difference between revisions

indentation
(smalltalk code)
(indentation)
Line 710:
n := 0.
UserInterrupt
catch:[
[true] whileTrue:[
n := n + 1.
n printCR.
Delay waitForSeconds: 0.5.
]
]</lang>
 
=={{header|Tcl}}==
Anonymous user