mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-27 16:28:38 +02:00
10 lines
249 B
ObjectPascal
10 lines
249 B
ObjectPascal
Program Example77;
|
|
|
|
{ This program demonstrates the IncSecond function }
|
|
|
|
Uses SysUtils,DateUtils;
|
|
|
|
Begin
|
|
Writeln('One Second from now is ',TimeToStr(IncSecond(Time,1)));
|
|
Writeln('One Second ago from now is ',TimeToStr(IncSecond(Time,-1)));
|
|
End. |