mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-03 03:48:18 +02:00
10 lines
272 B
ObjectPascal
10 lines
272 B
ObjectPascal
Program Example78;
|
|
|
|
{ This program demonstrates the IncMilliSecond function }
|
|
|
|
Uses SysUtils,DateUtils;
|
|
|
|
Begin
|
|
Writeln('One MilliSecond from now is ',TimeToStr(IncMilliSecond(Now,1)));
|
|
Writeln('One MilliSecond ago from now is ',TimeToStr(IncMilliSecond(Now,-1)));
|
|
End. |