11 lines
167 B
Text
11 lines
167 B
Text
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;
|