Browse Source

+ Corrected time: not mm but nn !

michael 22 years ago
parent
commit
2264e86d0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/sysutex/ex14.pp

+ 1 - 1
docs/sysutex/ex14.pp

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