Working on a program which is very reliant on time. So.... here's a mini-example. I basically want to be able to tell the time @ any moments notice. (to satisfy a while statement, ext).
var
nTime: Integer;
procedure echoClock;
begin
getTime(nTime);
WriteLn(nTime);
end.