handler.
Public Sub Application_Signal(Signal As Integer)
Print "Don't do that: I don't want to die during my sleep!"
End
Public Sub Main()
' Ignore the signal sent when you hit CTRL+Z in a terminal
Signal[Signal.SIGTSTP].Ignore
' Catch the signal sent when you hit CTRL+C in a terminal
Signal[Signal.SIGTERM].Catch
' Sleep one hour :-) But do not use the Sleep instruction, otherwise you won't see the signal!
Wait(3600)
End