Преглед изворни кода

+ Corrected time: not mm but nn !

michael пре 22 година
родитељ
комит
2264e86d0e
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      docs/sysutex/ex14.pp

+ 1 - 1
docs/sysutex/ex14.pp

@@ -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.