I'm a Chinese OIer(which is short for someone who has intersts in 'Olympiad in
Informatics').
Now I'm using Lazarus to debug. but every time when I want to know how much
time it spend during the program runs, I have to add something like this:
var ta,tb:Tsystemtime;
begin
datetimetosystemtime(now,ta);
........
........
datetimetosystemtime(now,tb);
writeln(....);
end.
It's so boring. I'm thinking about a new timer that shows how much time the
program spend during it runs.
I know that in LINUX, we can use 'time /. aa', but many of us are using windows.
Yours.
[EMAIL PROTECTED]