initial commit
This commit is contained in:
commit
60db522e87
107 changed files with 36924 additions and 0 deletions
12
tests/timetest.pas
Normal file
12
tests/timetest.pas
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
program timetest;
|
||||
var time:DateTime;
|
||||
begin
|
||||
while true do
|
||||
begin
|
||||
writeln('ticks: ', GetTicks);
|
||||
time := GetTime;
|
||||
writeln('h:', time.hours, ' m:', time.minutes, ' s:', time.seconds);
|
||||
writeln(DateStr(time), ' ', TimeStr(time,true));
|
||||
readln;
|
||||
end;
|
||||
end.
|
||||
Loading…
Add table
Add a link
Reference in a new issue