mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-10 04:39:31 +01:00
10 lines
245 B
ObjectPascal
10 lines
245 B
ObjectPascal
Program Example73;
|
|
|
|
{ This program demonstrates the IncWeek function }
|
|
|
|
Uses SysUtils,DateUtils;
|
|
|
|
Begin
|
|
Writeln('One Week from today is ',DateToStr(IncWeek(Today,1)));
|
|
Writeln('One Week ago from today is ',DateToStr(IncWeek(Today,-1)));
|
|
End. |