mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-26 21:28:16 +02:00
12 lines
222 B
ObjectPascal
12 lines
222 B
ObjectPascal
Program Example33;
|
|
|
|
{ This program demonstrates the EndOfTheWeek function }
|
|
|
|
Uses SysUtils,DateUtils;
|
|
|
|
Const
|
|
Fmt = '"last day of this week : "dd mmmm yyyy';
|
|
|
|
Begin
|
|
Writeln(FormatDateTime(Fmt,EndOfTheWeek(Today)));
|
|
End. |