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