ex78.pp 272 B

12345678910
  1. Program Example78;
  2. { This program demonstrates the IncMilliSecond function }
  3. Uses SysUtils,DateUtils;
  4. Begin
  5. Writeln('One MilliSecond from now is ',TimeToStr(IncMilliSecond(Now,1)));
  6. Writeln('One MilliSecond ago from now is ',TimeToStr(IncMilliSecond(Now,-1)));
  7. End.