+ Corrected time: not mm but nn !

This commit is contained in:
michael 2003-03-25 08:18:03 +00:00
parent b5abc16f15
commit 2264e86d0e

View File

@ -8,7 +8,7 @@ Var ThisMoment : TDateTime;
Begin
ThisMoment:=Now;
Writeln ('Now : ',FormatDateTime('hh:mm',ThisMoment));
Writeln ('Now : ',FormatDateTime('hh:nn',ThisMoment));
Writeln ('Now : ',FormatDateTime('DD MM YYYY',ThisMoment));
Writeln ('Now : ',FormatDateTime('c',ThisMoment));
End.