summaryrefslogtreecommitdiff
path: root/fpcdocs/datutex/ex88.pp
blob: e7befa1ff626b0c038b68a86bc6adcda1507432a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Program Example88;

{ This program demonstrates the RecodeMonth function }

Uses SysUtils,DateUtils;

Const
  Fmt = 'dddd dd mmmm yyyy hh:nn:ss';

Var
  S : AnsiString;

Begin
  S:=FormatDateTime(Fmt,RecodeMonth(Now,5));
  Writeln('This moment in May : ',S);
End.