RosettaCodeData/Task/Time-a-function/Elena/time-a-function.elena

24 lines
388 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import system'calendar;
import system'routines;
import system'threading;
import system'math;
import extensions;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
someProcess()
{
threadControl.sleep(1000);
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
new Range(0,10000).filterBy:(x => x.mod:2 == 0).summarize();
}
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
public program()
{
var start := now;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
someProcess();
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
var end := now;
2018-06-22 20:57:24 +00:00
2019-09-12 10:33:56 -07:00
console.printLine("Time elapsed in msec:",(end - start).Milliseconds)
}