RosettaCodeData/Task/Handle-a-signal/Sidef/handle-a-signal.sidef
2016-12-05 23:44:36 +01:00

11 lines
167 B
Text
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var start = Time.sec;
 
Sig.INT { |_|
Sys.say("Ran for #{Time.sec - start} seconds.");
Sys.exit;
}
 
{ |i|
Sys.say(i);
Sys.sleep(0.5);
} * Math.inf;