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