Explorar el Código

+ Corrected time: not mm but nn !

michael hace 22 años
padre
commit
2264e86d0e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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.